diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-20 16:48:49 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-20 16:48:49 -0500 |
commit | 85eb53247d7c0eac767de9fd79ba70183b7f57be (patch) | |
tree | 020b87156eb0ff211d9835a6e9d20a171dcebe46 /lib/router.php | |
parent | 424388611a347eeecd35be3a22984826dd2a503e (diff) |
change static in router to var
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php index e55b597f2..0640a5911 100644 --- a/lib/router.php +++ b/lib/router.php @@ -47,7 +47,7 @@ require_once 'Net/URL/Mapper.php'; class Router { - static $m = null; + var $m = null; static $inst = null; static function get() |