Changeset 11906
- Timestamp:
- 08/30/07 19:29:38 (1 year ago)
- Files:
-
- trunk/midcom/midcom.core/midcom/baseclasses/components/interface.php (modified) (1 diff)
- trunk/midcom/midcom.core/midcom/core/querybuilder.php (modified) (1 diff)
- trunk/midcom/midcom.core/midcom/services/_sessioning.php (modified) (4 diffs)
- trunk/midcom/midcom.core/midcom/services/session.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.core/midcom/baseclasses/components/interface.php
r11900 r11906 1084 1084 /**#@-*/ 1085 1085 } 1086 ?> trunk/midcom/midcom.core/midcom/core/querybuilder.php
r11899 r11906 891 891 } 892 892 } 893 894 895 893 ?> 896 trunk/midcom/midcom.core/midcom/services/_sessioning.php
r11878 r11906 97 97 if (! array_key_exists($domain, $_SESSION["midcom_session_data"])) 98 98 { 99 debug_add("SESSION: Request for the domain [$domain] failed, because the domain doesn't exist."); 99 debug_push_class(__CLASS__, __FUNCTION__); 100 debug_add("Request for the domain [{$domain}] failed, because the domain doesn't exist."); 101 debug_pop(); 100 102 return false; 101 103 } … … 103 105 if (! array_key_exists($key, $_SESSION["midcom_session_data"][$domain])) 104 106 { 105 debug_add("SESSION: Request for the key [$key] in the domain [$domain] failed, because the key doesn't exist."); 107 debug_push_class(__CLASS__, __FUNCTION__); 108 debug_add("Request for the key [{$key}] in the domain [{$domain}] failed, because the key doesn't exist."); 109 debug_pop(); 106 110 return false; 107 111 } … … 165 169 $data = $this->_get_helper($domain, $key); 166 170 unset($_SESSION["midcom_session_data"][$domain][$key]); 167 debug_print_r("SESSION: Dump after removing $domain/$key (serialized) ", $_SESSION["midcom_session_data"]);168 171 return $data; 169 172 } … … 188 191 { 189 192 $_SESSION["midcom_session_data"][$domain][$key] = serialize($value); 190 debug_print_r("SESSION: Dump after setting $domain/$key (serialized) ", $_SESSION["midcom_session_data"]);191 193 } 192 194 } trunk/midcom/midcom.core/midcom/services/session.php
r11884 r11906 1 1 <?php 2 3 2 /** 4 3 * @package midcom.services … … 157 156 158 157 } 159 160 161 158 ?>
