From 5405f28ba5294386c6a3d1e5b24e3a04f486544f Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 30 Oct 2006 07:41:11 +0000 Subject: [PATCH] Fixed some sprintf git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4960 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/systems/class_goFonServer.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/admin/systems/class_goFonServer.inc b/plugins/admin/systems/class_goFonServer.inc index e8d5e3b25..d4cdf76b5 100644 --- a/plugins/admin/systems/class_goFonServer.inc +++ b/plugins/admin/systems/class_goFonServer.inc @@ -64,16 +64,16 @@ class goFonServer extends goService{ { $message = plugin::check(); if (empty($this->goFonAdmin)){ - $message[]= sprintf(_("The attribute DB user is empty or contains invalid characters."), $attr); + $message[]= _("The attribute DB user is empty or contains invalid characters."); } if (empty($this->goFonPassword)){ - $message[]= sprintf(_("The attribute password is empty or contains invalid characters."), $attr); + $message[]= _("The attribute password is empty or contains invalid characters."); } if (empty($this->goFonAreaCode)){ - $message[]= sprintf(_("The attribute local dial prefix is empty or contains invalid characters."), $attr); + $message[]= _("The attribute local dial prefix is empty or contains invalid characters."); } if (empty($this->goFonCountryCode)){ - $message[]= sprintf(_("The attribute country dial prefix is empty or contains invalid characters."), $attr); + $message[]= _("The attribute country dial prefix is empty or contains invalid characters."); } return($message); } -- 2.30.2