/[health_html]/inc/Smarty.class.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /inc/Smarty.class.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by ravilov, Fri Aug 3 09:12:42 2001 UTC revision 1.4 by ravilov, Tue Oct 30 16:11:28 2001 UTC
# Line 37  Line 37 
37   *   *
38   */   */
39    
40  require('Smarty.addons.php');  require("inc/Smarty.addons.php");
41  require("Smarty.local.php");  require("inc/Smarty.local.php");
42    
43  define("SMARTY_PHP_PASSTHRU",0);  define("SMARTY_PHP_PASSTHRU",0);
44  define("SMARTY_PHP_QUOTE",1);  define("SMARTY_PHP_QUOTE",1);
# Line 111  class Smarty Line 111  class Smarty
111    
112  //----- local custom_mods  //----- local custom_mods
113          'filesize' => 'smarty_mod_filesize',          'filesize' => 'smarty_mod_filesize',
114            'js_popup' => 'smarty_mod_js_popup',
115    
116                                   );                                   );
117            
# Line 359  class Smarty Line 360  class Smarty
360              include($_compile_file);              include($_compile_file);
361          else {          else {
362              ob_start();              ob_start();
363              include($_compile_file);              @include($_compile_file);
364              $results = ob_get_contents();              $results = ob_get_contents();
365              ob_end_clean();              ob_end_clean();
366          }          }

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.26