mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
Changed single quotes to double quotes in old pasted code, as they are supposedly faster to parse.
This commit is contained in:
@@ -7,8 +7,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// set zynapse root path
|
// set zynapse root path
|
||||||
if ( !defined('ZNAP_ROOT') ) {
|
if ( !defined("ZNAP_ROOT") ) {
|
||||||
define('ZNAP_ROOT', dirname(dirname(dirname(__FILE__))));
|
define("ZNAP_ROOT", dirname(dirname(dirname(__FILE__))));
|
||||||
}
|
}
|
||||||
|
|
||||||
// set zynapse config path
|
// set zynapse config path
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
|
|
||||||
# specify a custom path to Zynapse libs
|
# specify a custom path to Zynapse libs
|
||||||
// $zynapse_libs = '';
|
// $zynapse_libs = "";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,11 +8,11 @@
|
|||||||
|
|
||||||
|
|
||||||
# path to config directory
|
# path to config directory
|
||||||
$config_path = dirname(dirname(__FILE__)).'/config';
|
$config_path = dirname(dirname(__FILE__))."/config";
|
||||||
|
|
||||||
|
|
||||||
// initial boot and environment setup
|
// initial boot and environment setup
|
||||||
require_once($config_path.'/init/boot.php');
|
require_once($config_path."/init/boot.php");
|
||||||
|
|
||||||
|
|
||||||
// initialize zynapse
|
// initialize zynapse
|
||||||
|
|||||||
2
vendor/zynapse/zynapse.php
vendored
2
vendor/zynapse/zynapse.php
vendored
@@ -39,6 +39,4 @@ class Zynapse {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
Reference in New Issue
Block a user