Show
Ignore:
Timestamp:
12/14/05 01:42:40 (6 years ago)
Author:
john
Message:

add comments and Session::start to dispatcher fix flash in session

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/dispatcher.php

    r72 r96  
    11<? 
    2 # $Id: dispatcher.php 51 2005-10-29 14:40:42Z john $ 
     2# $Id$ 
    33# 
    44# Copyright (c) 2005 John Peterson 
     
    2727    function dispatch() { 
    2828        try { 
     29            Session::start(); 
    2930            $ac = new ActionController(); 
    3031            $ac->process_route(); 
    31         } catch(Exception $e) {              
     32        } catch(Exception $e) { 
    3233            $ac->process_with_exception(&$e); 
    3334        }