From 669f494922df170db2703f14222d1b8dc4813300 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 17 May 2008 12:18:17 -0400 Subject: add action class to default loads darcs-hash:20080517161817-84dde-a28288b093f40eda0d8444f54eca818b2c65a735.gz --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.php') diff --git a/index.php b/index.php index cddd11034..9fa749522 100644 --- a/index.php +++ b/index.php @@ -27,7 +27,7 @@ $actionfile = INSTALLDIR."/actions/$action.php"; if (file_exists($actionfile)) { require_once($actionfile); - $action_class = ucfirst($action) . "Action"; + $action_class = ucfirst($action)."Action"; call_user_func(array($action_class, 'handle'), $_REQUEST); } else { common_user_error(_t('Unknown action')); -- cgit v1.2.3-54-g00ecf