View Single Post
  #3  
Old 7th January 2010, 15:24
proba10 proba10 is offline
Member
 
Join Date: Dec 2008
Choose
Posts: 7
Default
Quote:
Originally Posted by phogo View Post
Would you like the share with others how you fixed it?

p
ok

tsse 4.3 - 5.6

include/ts_imdb.php

search

PHP Code:
  $regex '#<b>User Rating:</b>(.*)</small>#U';
  
preg_match_all ($regex$text$ratingPREG_SET_ORDER); 
replace

PHP Code:
  $regex '#<b>(\d\.\d/10)</b>#Uis';
  
preg_match_all ($regex$text$ratingPREG_SET_ORDER); 
finish;
The Following User Says Thank You to proba10 For This Useful Post:
Phogo (8th January 2010)