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:37:05 +0200 |
commit | c465ee1e0654aac8e944dcffaa831447be37f01f (patch) | |
tree | 4622f227f04a4473a06761ad80e64f7bf15d8033 /program/lib/Roundcube | |
parent | 398c9d8869e9668f3710b224952a5a23aa2e04db (diff) |
Fix typo simpleEscape -> escapeSimple
Diffstat (limited to 'program/lib/Roundcube')
-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 48f0ef906..a9163cbd7 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); } |