From a7fa1ed5ef10ccb624b83341f4baf1c497a08c30 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 30 Nov 2005 08:37:42 +0000 Subject: [PATCH] Reverted strings git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2144 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/gofax/faxreports/class_faxreport.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/gofax/faxreports/class_faxreport.inc b/plugins/gofax/faxreports/class_faxreport.inc index 5aa393737..32e98614f 100644 --- a/plugins/gofax/faxreports/class_faxreport.inc +++ b/plugins/gofax/faxreports/class_faxreport.inc @@ -88,17 +88,17 @@ class faxreport extends plugin /* Some checks */ if(!isset($this->config->data['SERVERS']['FAX'])){ - print_red(_("There is no fax database defined in your config. Can't query anything.")); + print_red(_("Can't connect to fax database, no reports can be shown!")); return($smarty->fetch(get_template_path('contents.tpl', TRUE))); }elseif(!is_callable("mysql_connect")){ - print_red(_("There is no mysql extension available, please check your php setup.")); + print_red(_("There is no mysql extension available, please check your php setup.")); return($smarty->fetch(get_template_path('contents.tpl', TRUE))); }else{ /* Connecting, selecting database */ $cfg = $this->config->data['SERVERS']['FAX']; $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']); if ($link === FALSE){ - print_red(_("Can't connect to fax database, no reports can be shown!. Check username, password and server settings.")); + print_red(_("Can't connect to fax database, no reports can be shown!")); return($smarty->fetch(get_template_path('contents.tpl', TRUE))); } if (! @mysql_select_db("gofax")){ -- 2.30.2