فهرست منبع

Make sure base_uri is correct (submitted by James Lewis)

simond 23 سال پیش
والد
کامیت
f0dd17daf3
1فایلهای تغییر یافته به همراه9 افزوده شده و 0 حذف شده
  1. 9 0
      functions/auth.php

+ 9 - 0
functions/auth.php

@@ -13,6 +13,15 @@
 
 require_once( '../functions/page_header.php' );
 
+/* If a user opens a new session then comes back to this one,
+ * $base_uri isn't set because it the session is invalid.
+ */
+
+if (! isset($base_uri)) {
+    ereg ('(^.*/)[^/]+/[^/]+$', $PHP_SELF, $regs);
+    $base_uri = $regs[1];
+}
+
 function is_logged_in () {
     global $squirrelmail_language, $frame_top, $base_uri;