From 424982bc54cf7953311ffc407609f6fa6c4449f3 Mon Sep 17 00:00:00 2001 From: kink Date: Fri, 3 Jun 2005 08:37:41 +0000 Subject: [PATCH] string typo git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9489 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/abook_database.php | 4 ++-- functions/abook_local_file.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/abook_database.php b/functions/abook_database.php index 9ca3ce17..528b8aa8 100644 --- a/functions/abook_database.php +++ b/functions/abook_database.php @@ -313,7 +313,7 @@ class abook_database extends addressbook_backend { /* See if user exist already */ $ret = $this->lookup($userdata['nickname']); if (!empty($ret)) { - return $this->set_error(sprintf(_("User '%s' already exist"), + return $this->set_error(sprintf(_("User '%s' already exists"), $ret['nickname'])); } @@ -424,4 +424,4 @@ class abook_database extends addressbook_backend { } /* End of class abook_database */ // vim: et ts=4 -?> \ No newline at end of file +?> diff --git a/functions/abook_local_file.php b/functions/abook_local_file.php index 6d6a636b..d1ba38a4 100644 --- a/functions/abook_local_file.php +++ b/functions/abook_local_file.php @@ -357,7 +357,7 @@ class abook_local_file extends addressbook_backend { /* See if user exists already */ $ret = $this->lookup($userdata['nickname']); if(!empty($ret)) { - return $this->set_error(sprintf(_("User '%s' already exist"), + return $this->set_error(sprintf(_("User '%s' already exists"), $ret['nickname'])); } @@ -503,4 +503,4 @@ class abook_local_file extends addressbook_backend { } } /* End of class abook_local_file */ -?> \ No newline at end of file +?> -- 2.25.1