diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-18 16:04:56 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-18 16:04:56 +0000 |
commit | 083738b1f9cf9a8a5a64683b52a0aaee384e6600 (patch) | |
tree | 542e377efaeca94715a62d30d4d35db458e98529 | |
parent | 654aaff78a1811b888d40964b8a3457db4aa5dcb (diff) | |
download | elgg-083738b1f9cf9a8a5a64683b52a0aaee384e6600.tar.gz elgg-083738b1f9cf9a8a5a64683b52a0aaee384e6600.tar.bz2 |
Re-commented out callpath_gatekeeper. refs #37
git-svn-id: https://code.elgg.org/elgg/trunk@975 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/database.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engine/lib/database.php b/engine/lib/database.php index d3113e202..b06de96e7 100644 --- a/engine/lib/database.php +++ b/engine/lib/database.php @@ -129,8 +129,8 @@ global $CONFIG, $dbcalls; - if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) - throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'get_data()'));
+ //if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) + // throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'get_data()'));
$dblink = get_db_link('read');
@@ -174,8 +174,8 @@ global $CONFIG, $dbcalls; - if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) - throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'get_data_row()'));
+ // if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) + // throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'get_data_row()'));
$dblink = get_db_link('read');
@@ -213,8 +213,8 @@ global $CONFIG, $dbcalls; - if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) - throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'insert_data()'));
+ //if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) + // throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'insert_data()'));
$dblink = get_db_link('write');
@@ -245,8 +245,8 @@ global $dbcalls, $CONFIG; - if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) - throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'update_data()'));
+ //if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) + // throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'update_data()'));
$dblink = get_db_link('write');
@@ -278,8 +278,8 @@ global $dbcalls, $CONFIG; - if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) - throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'delete_data()'));
+ //if (!callpath_gatekeeper($CONFIG->path . "engine/", true, true)) + // throw new SecurityException(sprintf(elgg_echo('SecurityException:FunctionDenied'), 'delete_data()'));
$dblink = get_db_link('write');
|