diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2012-09-17 23:57:14 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2012-09-17 23:57:14 +0200 |
| commit | 82d22f5e2176392ca2389df0e47a29092cf38089 (patch) | |
| tree | 5bc2452e326e4bcf5b42e39e7feda84fc6f7f9fe | |
| parent | e280bcc8d00257607f2626f85afd01eec50831b3 (diff) | |
| download | phorkie-82d22f5e2176392ca2389df0e47a29092cf38089.tar.gz phorkie-82d22f5e2176392ca2389df0e47a29092cf38089.zip | |
remove session id check, it was not working the way I hoped for
| -rw-r--r-- | www/www-header.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/www/www-header.php b/www/www-header.php index ed41503..9aa8732 100644 --- a/www/www-header.php +++ b/www/www-header.php @@ -1,8 +1,6 @@ <?php namespace phorkie; -if (session_id() == "") { - session_start(); -} +session_start(); set_include_path( __DIR__ . '/../src/' |
