Show
Ignore:
Timestamp:
08/19/05 17:55:16 (8 years ago)
Author:
benoitg
Message:

2005-08-19 Benoit Gr�goire <bock@…>

  • New schema version
  • install.php, tmp/magpie_cache/: Move all magpie caches to a central location, adjust install script to match.
  • classes/MainUI.php: Add $_REQUEST array output if debug_request is set as a parameter to the page
  • classes/Network.php, classes/Node.php: Change content ordering to be most recently subscribed first, this is a stopgap measure while waiting for Content ordering to be explicitely settable.
  • classes/Content/RssAggregator.php: Full admin UI, some bug fixes
  • lib/RssPressReview/RssPressReview.php: New version, adds isFeedAvailable() and getFeedTitle() methods. Fixes minor bugs
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/MainUI.php

    r686 r694  
    283283        } 
    284284 
    285         /** Display the page */ 
     285        /** Display the page 
     286         * @note:  Uses a few request parameters to displaty debug information 
     287         * if $_REQUEST['debug_request'] is present, it will print out the $_REQUEST array at the top of the page */ 
    286288        public function display() 
    287289        { 
     
    315317 
    316318                $html .= "<body>"."\n"; 
     319                if(isset($_REQUEST['debug_request'])) 
     320                { 
     321                        $html .= '<pre>'; 
     322                        $html .= print_r($_REQUEST,true); 
     323                        $html .= '</pre>'; 
     324                } 
    317325                $html .= '<div class="outer_container">'."\n"; 
    318326