svn: /web/doc-editor/trunk/php/ DBConnection.php
[email protected] (Neal Poole)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
nbpoole Mon, 20 Jun 2011 17:40:12 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=312342
Log:
Removing dead code from DBConnection.
Changed paths:
U web/doc-editor/trunk/php/DBConnection.php
Modified: web/doc-editor/trunk/php/DBConnection.php
===================================================================
--- web/doc-editor/trunk/php/DBConnection.php 2011-06-20 17:36:34 UTC (rev 312341)
+++ web/doc-editor/trunk/php/DBConnection.php 2011-06-20 17:40:12 UTC (rev 312342)
@@ -63,12 +63,6 @@
{
return $this->conn->real_escape_string($escape_str);
}
-
- public function multi_query($s)
- {
- $r = $this->conn->multi_query($s) or die('Error: '.$this->conn->error.'|'.$s);
- return $r;
- }
}
?>