Changeset 11906

Show
Ignore:
Timestamp:
08/30/07 19:29:38 (1 year ago)
Author:
bergie
Message:

Hunt for stray whitespace

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.core/midcom/baseclasses/components/interface.php

    r11900 r11906  
    10841084    /**#@-*/ 
    10851085} 
     1086?> 
  • trunk/midcom/midcom.core/midcom/core/querybuilder.php

    r11899 r11906  
    891891    } 
    892892} 
    893  
    894  
    895893?> 
    896  
  • trunk/midcom/midcom.core/midcom/services/_sessioning.php

    r11878 r11906  
    9797        if (! array_key_exists($domain, $_SESSION["midcom_session_data"])) 
    9898        { 
    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(); 
    100102            return false; 
    101103        } 
     
    103105        if (! array_key_exists($key, $_SESSION["midcom_session_data"][$domain])) 
    104106        { 
    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(); 
    106110            return false; 
    107111        } 
     
    165169            $data = $this->_get_helper($domain, $key); 
    166170            unset($_SESSION["midcom_session_data"][$domain][$key]); 
    167             debug_print_r("SESSION: Dump after removing $domain/$key (serialized) ", $_SESSION["midcom_session_data"]); 
    168171            return $data; 
    169172        } 
     
    188191    { 
    189192        $_SESSION["midcom_session_data"][$domain][$key] = serialize($value); 
    190         debug_print_r("SESSION: Dump after setting $domain/$key (serialized) ", $_SESSION["midcom_session_data"]); 
    191193    } 
    192194} 
  • trunk/midcom/midcom.core/midcom/services/session.php

    r11884 r11906  
    11<?php 
    2  
    32/** 
    43 * @package midcom.services 
     
    157156     
    158157} 
    159  
    160  
    161158?>