Bug #8500: Add SID to list of params for password dialog page
authorMichael M Slusarz <slusarz@curecanti.org>
Mon, 24 Aug 2009 03:36:26 +0000 (21:36 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Mon, 24 Aug 2009 03:36:26 +0000 (21:36 -0600)
imp/lib/IMP.php

index 37ab8c7..39ef843 100644 (file)
@@ -1221,6 +1221,11 @@ class IMP
             break;
         }
 
+        if (defined('SID')) {
+            parse_str(SID, $sid);
+            $params = array_merge($params, $sid);
+        }
+
         $js_params = array(
             'action' => $action,
             'uri' => Horde::applicationUrl('ajax.php', true, -1) . '/' . $type,