aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-04-11 03:54:42 +0000
committerrvelices <rv-github@modusoptimus.com>2006-04-11 03:54:42 +0000
commita314099989aaef5ce4818837f554cfd98ba13698 (patch)
treee2078ff9dbd80106513a146cc201b477e078472e /index.php
parentb3c2da5ef3ec169307bdee4bd51fc1e1b5e9b390 (diff)
fix: iptc keywords are split the same way for local and remote sites
(create_listing_file) fix: recent_cats and category_subcats build the url the same way (both subcatify and normal) fix: recent_cats subcatify also strip tags on subcategory comment fix: cookie deletion on logout uses cookie_domain from ini file git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1144 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index 1883e67b0..c48242e68 100644
--- a/index.php
+++ b/index.php
@@ -44,7 +44,8 @@ if ( isset( $_GET['act'] )
$_SESSION = array();
session_unset();
session_destroy();
- setcookie(session_name(),'',0, ini_get('session.cookie_path') );
+ setcookie(session_name(),'',0,
+ ini_get('session.cookie_path'), ini_get('session.cookie_domain') );
redirect( make_index_url() );
}