diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..6dc1613 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "deploy"] + path = deploy + url = git://github.com/yandod/engineyard-netcommons-deploy.git diff --git a/README.md b/README.md index ddc2628..1487799 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,5 @@ NetCommons2 =========== NetCommons Version2 + +:D diff --git a/deploy b/deploy new file mode 160000 index 0000000..cb232dc --- /dev/null +++ b/deploy @@ -0,0 +1 @@ +Subproject commit cb232dc90dd4aaba81d74e3f650715811b690891 diff --git a/html/htdocs/index.php b/html/htdocs/index.php index 047f140..2bde37b 100644 --- a/html/htdocs/index.php +++ b/html/htdocs/index.php @@ -15,7 +15,7 @@ * @access public */ if (version_compare(phpversion(), '5.3.0', '>=')) { - error_reporting(E_ALL ^ E_DEPRECATED); + error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); } else { error_reporting(E_ALL); } @@ -73,4 +73,4 @@ function transPathSeparator($path) { $controller = new Controller(); $controller->execute(); } -?> \ No newline at end of file +?>