Changeset 202 for trunk/lib/App.inc.php


Ignore:
Timestamp:
Jul 13, 2006 11:24:01 PM (18 years ago)
Author:
scdev
Message:

Q - updated usage of $nav.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/App.inc.php

    r201 r202  
    345345        }
    346346        $this->timer->stop('_app');
    347         $this->logMsg(sprintf('Script ended gracefully. Execution time: %s. Number of db queries: %s.', $this->timer->getTime('_app'), $num_queries), LOG_INFO, __FILE__, __LINE__);
     347        $this->logMsg(sprintf('Script ended gracefully. Execution time: %s. Number of db queries: %s.', $this->timer->getTime('_app'), $num_queries), LOG_DEBUG, __FILE__, __LINE__);
    348348    }
    349349
     
    824824        $url = $this->url($url, $carry_args, $always_include_sid);
    825825
     826        // Should we send a "303 See Other" header here instead of relying on the 302 sent automatically by PHP?
    826827        header(sprintf('Location: %s', $url));
    827828        $this->logMsg(sprintf('dieURL: %s', $url), LOG_DEBUG, __FILE__, __LINE__);
    828829
    829         // End this application.
     830        // End application.
    830831        // Recommended, although I'm not sure it's necessary: http://cn2.php.net/session_write_close
    831832        $this->stop();
Note: See TracChangeset for help on using the changeset viewer.