diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-17 17:36:21 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-17 17:36:21 +0200 |
commit | 7af32a95bb7816787516968638b1b80e1a77180d (patch) | |
tree | 3a5ff1b02b6ca0e38ce56d7bc4f99a834dfc6b1a /program/lib/Roundcube/rcube_db.php | |
parent | 82f1c77847fe30608055cfa41fc5d9f5f9baff80 (diff) |
Fix typo simpleEscape -> escapeSimple
Diffstat (limited to 'program/lib/Roundcube/rcube_db.php')
-rw-r--r-- | program/lib/Roundcube/rcube_db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php index d49056cdf..9104a85d8 100644 --- a/program/lib/Roundcube/rcube_db.php +++ b/program/lib/Roundcube/rcube_db.php @@ -656,7 +656,7 @@ class rcube_db * @deprecated Replaced by rcube_db::quote * @see rcube_db::quote */ - public function simpleEscape($str) + public function escapeSimple($str) { return $this->quote($str); } |