Changed single quotes to double quotes in old pasted code, as they are supposedly faster to parse.

This commit is contained in:
2009-08-15 19:57:29 +03:00
parent ec335ed5e8
commit da68bb2a21
4 changed files with 5 additions and 7 deletions

View File

@@ -7,8 +7,8 @@
*/
// set zynapse root path
if ( !defined('ZNAP_ROOT') ) {
define('ZNAP_ROOT', dirname(dirname(dirname(__FILE__))));
if ( !defined("ZNAP_ROOT") ) {
define("ZNAP_ROOT", dirname(dirname(dirname(__FILE__))));
}
// set zynapse config path

View File

@@ -9,7 +9,7 @@
# specify a custom path to Zynapse libs
// $zynapse_libs = '';
// $zynapse_libs = "";

View File

@@ -8,11 +8,11 @@
# path to config directory
$config_path = dirname(dirname(__FILE__)).'/config';
$config_path = dirname(dirname(__FILE__))."/config";
// initial boot and environment setup
require_once($config_path.'/init/boot.php');
require_once($config_path."/init/boot.php");
// initialize zynapse

View File

@@ -39,6 +39,4 @@ class Zynapse {
}
?>