diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-21 17:04:17 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-21 17:04:17 +0000 |
| commit | 578beb75ef0b63680ffd9fdb216df87d4cf098d5 (patch) | |
| tree | 48572987f688559e88667eefb286b62918dc06e3 /phpBB/includes/db/mysqli.php | |
| parent | 9f060eba6eb8f2e54f5c26cc23c4f82eee7903b8 (diff) | |
| download | forums-578beb75ef0b63680ffd9fdb216df87d4cf098d5.tar forums-578beb75ef0b63680ffd9fdb216df87d4cf098d5.tar.gz forums-578beb75ef0b63680ffd9fdb216df87d4cf098d5.tar.bz2 forums-578beb75ef0b63680ffd9fdb216df87d4cf098d5.tar.xz forums-578beb75ef0b63680ffd9fdb216df87d4cf098d5.zip | |
put sql_handle_data() into dbal and let DBMS who support this overwrite it. David: would be nice if you could have a look at it later. ;)
git-svn-id: file:///svn/phpbb/trunk@9285 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/mysqli.php')
| -rw-r--r-- | phpBB/includes/db/mysqli.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/includes/db/mysqli.php b/phpBB/includes/db/mysqli.php index acd789b086..386efdbff0 100644 --- a/phpBB/includes/db/mysqli.php +++ b/phpBB/includes/db/mysqli.php @@ -258,8 +258,6 @@ class phpbb_dbal_mysqli extends phpbb_dbal /** * Handle data by using prepared statements. See {@link phpbb_dbal::sql_handle_data() sql_handle_data()} for details. - * @todo implement correctly by using types. ;) - */ public function sql_handle_data($type, $table, $data, $where = '') { if ($type === 'INSERT') @@ -293,6 +291,7 @@ class phpbb_dbal_mysqli extends phpbb_dbal mysqli_stmt_close($stmt); } +*/ /** * Build DB-specific query bits. See {@link phpbb_dbal::_sql_custom_build() _sql_custom_build()} for details. |
