aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/mysql4.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/db/mysql4.php')
-rw-r--r--phpBB/includes/db/mysql4.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/phpBB/includes/db/mysql4.php b/phpBB/includes/db/mysql4.php
index c63d5fb064..071f4c4b55 100644
--- a/phpBB/includes/db/mysql4.php
+++ b/phpBB/includes/db/mysql4.php
@@ -331,16 +331,6 @@ class dbal_mysql4 extends dbal
return @mysql_real_escape_string($msg, $this->db_connect_id);
}
- function sql_escape_binary($msg)
- {
- // If the last char is
- if (substr($msg, -1) == ' ')
- {
- $msg .= "\0";
- }
- return "'" . $this->sql_escape($msg) . "'";
- }
-
/**
* Build db-specific query data
* @access: private