summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-17 11:49:42 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-17 11:49:42 -0400
commiteb4c69ef27ebeba69339098139369b3d48b8a946 (patch)
treeeeae42e037a66a47ae2cb723838d7c9aa8758cbb /index.php
parent3b14b7901c65144835d74b712279d0492c267c0c (diff)
correct placement of common
darcs-hash:20080517154942-84dde-d671f0805fc47c4321d84d3e1c1aea6a11d46395.gz
Diffstat (limited to 'index.php')
-rw-r--r--index.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/index.php b/index.php
index 9d27eef2d..cddd11034 100644
--- a/index.php
+++ b/index.php
@@ -20,7 +20,7 @@
define('INSTALLDIR', dirname(__FILE__));
define('LACONICA', true);
-require_once(INSTALLDIR . "/common.php");
+require_once(INSTALLDIR . "/lib/common.php");
$action = $_REQUEST['action'];
$actionfile = INSTALLDIR."/actions/$action.php";
@@ -31,5 +31,4 @@ if (file_exists($actionfile)) {
call_user_func(array($action_class, 'handle'), $_REQUEST);
} else {
common_user_error(_t('Unknown action'));
-}
-
+} \ No newline at end of file