diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-11-17 19:37:57 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-11-17 19:37:57 +0000 |
commit | d9387842ac7c41d4c92ccf7d797fed214ed38de8 (patch) | |
tree | 265e2c90946fd8c8dd95bcde2d5358343ff648f6 /phpBB/includes/db/dbal.php | |
parent | 17f00978ddef4dfdeb7a69ec4498a9a891354cf6 (diff) | |
download | forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar.gz forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar.bz2 forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar.xz forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.zip |
adjust some comments to work with phpdocumentor. :)
git-svn-id: file:///svn/phpbb/trunk@6595 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/dbal.php')
-rw-r--r-- | phpBB/includes/db/dbal.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php index d2d3efedaa..ad0fdf5541 100644 --- a/phpBB/includes/db/dbal.php +++ b/phpBB/includes/db/dbal.php @@ -307,15 +307,15 @@ class dbal } else { - return $field . ($negate ? ' NOT IN ' : ' IN ' ) . '(' . implode(', ', array_map(array($this, '_sql_validate_value'), $array)) . ')'; + return $field . ($negate ? ' NOT IN ' : ' IN ') . '(' . implode(', ', array_map(array($this, '_sql_validate_value'), $array)) . ')'; } } /** * Run more than one insert statement. * - * @param $sql_ary array multi-dimensional array holding the statement data. - * @param $table string table name to run the statements on + * @param string $table table name to run the statements on + * @param array &$sql_ary multi-dimensional array holding the statement data. * * @return bool false if no statements were executed. * @access public |