Changeset 389
- Timestamp:
- 06/03/10 14:19:02 (3 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
doc/CHANGELOG (modified) (1 diff)
-
imdb.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/CHANGELOG
r388 r389 6 6 v2.0.2 7 7 ------------------- 8 ! some search results missed the year (if it was consisting of more than a plain8 ! imdbsearch: some search results missed the year (if it was consisting of more than a plain 9 9 year, e.g. something like "2001/II") 10 ! imdb::prodNotes: lastUpdate was broken due to a site change 10 11 11 12 v2.0.1 (23.05.2010) -
trunk/imdb.class.php
r385 r389 658 658 preg_match('!<h5>Status:</h5>\s*<div class="info-content">\s*(.*?)\|(.*?)</div>!ims',$match[1],$tmp); 659 659 $status = trim($tmp[1]); $statnote = trim($tmp[2]); 660 preg_match('!<h5>Status Updated:</h5>\s* (\d+)\s*(\D+)\s+(\d{4})!ims',$match[1],$tmp);660 preg_match('!<h5>Status Updated:</h5>\s*<div.+?>\s*(\d+)\s*(\D+)\s+(\d{4})!ims',$match[1],$tmp); 661 661 $update = array("day"=>$tmp[1],"month"=>$tmp[2],"mon"=>$this->monthNo($tmp[2]),"year"=>$tmp[3]); 662 662 preg_match('!<h5>More Info:</h5>\s*<div class="info-content">\s*(.*?)</div!ims',$match[1],$tmp);
