From: Evan Prodromou Date: Sat, 17 May 2008 16:18:17 +0000 (-0400) Subject: add action class to default loads X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=669f494922df170db2703f14222d1b8dc4813300;p=quix0rs-gnu-social.git add action class to default loads darcs-hash:20080517161817-84dde-a28288b093f40eda0d8444f54eca818b2c65a735.gz --- diff --git a/index.php b/index.php index cddd110341..9fa749522d 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')); diff --git a/lib/common.php b/lib/common.php index bcfca0fc04..5eed1bb81b 100644 --- a/lib/common.php +++ b/lib/common.php @@ -55,7 +55,8 @@ $config['db'] = 'db_driver' => 'MDB2', 'quote_identifiers' => false); -require_once(INSTALLDIR . '/config.php'); +require_once(INSTALLDIR.'/config.php'); +require_once(INSTALLDIR.'/lib/action.php'); # Show a server error