Merge pull request #981 from ralpheav/master

Adding changes to unset warnings
This commit is contained in:
ferOnti
2012-11-22 06:34:09 -08:00
2 changed files with 2 additions and 1 deletions

View File

@@ -965,6 +965,7 @@ class Bootstrap
}
}
$mtime = date ( 'U' );
$gmt_mtime = gmdate( "D, d M Y H:i:s", $mtime ) . " GMT";
header( 'Pragma: cache' );
header( 'ETag: "' . md5( $mtime . $filename ) . '"' );

View File

@@ -400,7 +400,7 @@ if (defined( 'PATH_DATA' ) && file_exists( PATH_DATA )) {
Bootstrap::LoadThirdParty( 'smarty/libs', 'Smarty.class' );
//testing the autoloader feature
spl_autoload_register(array(Bootstrap, 'autoloadClass'));
spl_autoload_register(array('Bootstrap', 'autoloadClass'));
Bootstrap::registerClass('headPublisher', PATH_GULLIVER . "class.headPublisher.php");
Bootstrap::registerClass('G', PATH_GULLIVER . "class.g.php");
Bootstrap::registerClass('publisher', PATH_GULLIVER . "class.publisher.php");