aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/driver/driver.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-09-16 04:45:58 +0200
committerNils Adermann <naderman@naderman.de>2013-09-16 04:45:58 +0200
commitd626ebaf1e3d993ba3474c8dd403b18d5faf8863 (patch)
tree5fd13d2e53ad48a228164a85aa1a7978727b262e /phpBB/phpbb/db/driver/driver.php
parentccbb070652a188fd3b2354781d57af8847015eee (diff)
downloadforums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar
forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar.gz
forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar.bz2
forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar.xz
forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.zip
[ticket/11700] Fix a few more comments
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/db/driver/driver.php')
-rw-r--r--phpBB/phpbb/db/driver/driver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/driver/driver.php b/phpBB/phpbb/db/driver/driver.php
index a266b2aa48..cd960bc65a 100644
--- a/phpBB/phpbb/db/driver/driver.php
+++ b/phpBB/phpbb/db/driver/driver.php
@@ -274,7 +274,7 @@ class driver
* Correctly adjust LIKE expression for special characters
* Some DBMS are handling them in a different way
*
- * @param string $expression The expression to use. Every wildcard is escaped, \except $this->any_char and $this->one_char
+ * @param string $expression The expression to use. Every wildcard is escaped, except $this->any_char and $this->one_char
* @return string LIKE expression including the keyword!
*/
function sql_like_expression($expression)
@@ -452,7 +452,7 @@ class driver
* @param string $field name of the sql column that shall be compared
* @param array $array array of values that are allowed (IN) or not allowed (NOT IN)
* @param bool $negate true for NOT IN (), false for IN () (default)
- * @param bool $allow_empty_set If true, \allow $array to be empty, this function will return 1=1 or 1=0 then. Default to false.
+ * @param bool $allow_empty_set If true, allow $array to be empty, this function will return 1=1 or 1=0 then. Default to false.
*/
function sql_in_set($field, $array, $negate = false, $allow_empty_set = false)
{