aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/auth.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-09-14 14:57:29 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-09-14 14:57:29 +0000
commit79137c312c15638a380adacb18a2d7194f42f09d (patch)
treea96cf32a8b8242484bee18db3e3a19ebfdfb3f25 /phpBB/includes/acp/auth.php
parent665adc1722385e134ef20f8e470d5593a8be284b (diff)
downloadforums-79137c312c15638a380adacb18a2d7194f42f09d.tar
forums-79137c312c15638a380adacb18a2d7194f42f09d.tar.gz
forums-79137c312c15638a380adacb18a2d7194f42f09d.tar.bz2
forums-79137c312c15638a380adacb18a2d7194f42f09d.tar.xz
forums-79137c312c15638a380adacb18a2d7194f42f09d.zip
- Fix some bugs
- fixed retrieving of permissions if the LIKE statement is used as well as proper supporting (needs testing on mssql) git-svn-id: file:///svn/phpbb/trunk@6366 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/auth.php')
-rw-r--r--phpBB/includes/acp/auth.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php
index 71d17bd40d..36fa5dbcea 100644
--- a/phpBB/includes/acp/auth.php
+++ b/phpBB/includes/acp/auth.php
@@ -1009,7 +1009,9 @@ class auth_admin extends auth
// Get permission type
$sql = 'SELECT auth_option, auth_option_id
FROM ' . ACL_OPTIONS_TABLE . "
- WHERE auth_option LIKE '" . $db->sql_escape($permission_type) . "%'";
+ WHERE auth_option LIKE '" . $db->sql_escape(str_replace('_', "\_", $permission_type)) . "%'";
+ $sql .= (SQL_LAYER == 'mssql' || SQL_LAYER == 'mssql_odbc') ? " ESCAPE '\\'" : '';
+
$result = $db->sql_query($sql);
$auth_id_ary = array();