From 661ff1c7015467b3bf106935887491129aa36b6b Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 15 May 2008 06:11:25 +0000 Subject: [PATCH] Added additional
tags to msgPool::deleteInfo git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10900 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/utils/class_msgPool.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gosa-core/include/utils/class_msgPool.inc b/gosa-core/include/utils/class_msgPool.inc index 719744063..0471d44cc 100644 --- a/gosa-core/include/utils/class_msgPool.inc +++ b/gosa-core/include/utils/class_msgPool.inc @@ -44,15 +44,15 @@ class msgPool } if (count($name) == 1){ if($type == ""){ - return (_("This object will be deleted:")."
".msgPool::buildList($name)); + return (_("This object will be deleted:")."
".msgPool::buildList($name)."

"); }else{ - return (sprintf(_("This '%s' object will be deleted:"),$type). "
".msgPool::buildList($name)); + return (sprintf(_("This '%s' object will be deleted:"),$type). "
".msgPool::buildList($name)."

"); } } if($type == ""){ - return (sprintf(_("These objects will be deleted: %s"), "
".msgPool::buildList($name))); + return (sprintf(_("These objects will be deleted: %s"), "
".msgPool::buildList($name)."

")); }else{ - return (sprintf(_("These '%s' objects will be deleted: %s"),$type, "
".msgPool::buildList($name))); + return (sprintf(_("These '%s' objects will be deleted: %s"),$type, "
".msgPool::buildList($name)."

")); } } -- 2.30.2