Changeset 2636
- Timestamp:
- 06/24/08 06:13:41 (5 months ago)
- Files:
-
- branches/release-40/php/lib/MTViewer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/release-40/php/lib/MTViewer.php
r2333 r2636 414 414 $fntag = 'smarty_function_mt'.$tag; 415 415 if (!function_exists($fntag)) 416 @include_once("function.mt$tag.php"); 416 if (file_exists($this->mt->config['phplibdir']."/function.mt$tag.php")) 417 @include_once("function.mt$tag.php"); 417 418 if (function_exists($fntag)) 418 419 $hdlr = $fntag; … … 421 422 $fntag = 'smarty_block_mt'.$tag; 422 423 if (!function_exists($fntag)) 423 @include_once("block.mt$tag.php"); 424 if (file_exists($this->mt->config['phplibdir']."/block.mt$tag.php")) 425 @include_once("block.mt$tag.php"); 424 426 if (function_exists($fntag)) { 425 427 $hdlr = $fntag;
