Changeset 170
- Timestamp:
- 09/17/08 16:31:55 (23 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
doc/CHANGELOG (modified) (1 diff)
-
imdb_base.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/CHANGELOG
r168 r170 5 5 + added the imdbXML class provided by Pablo Castorino (thanx Pablo!) 6 6 ! fixed rating (due to IMDB site changes). Tnx to sourcer for the patch! 7 + allowing to define a different config file defined by the constant IMDBPHP_CONFIG 7 8 8 9 v1.0.7 (02.09.2008) -
trunk/imdb_base.class.php
r155 r170 13 13 14 14 require_once (dirname(__FILE__)."/browseremulator.class.php"); 15 require_once (dirname(__FILE__)."/imdb_config.class.php"); 15 if (defined('IMDBPHP_CONFIG')) require_once (IMDBPHP_CONFIG); 16 else require_once (dirname(__FILE__)."/imdb_config.class.php"); 16 17 require_once (dirname(__FILE__)."/imdb_request.class.php"); 17 18
