From: cajus Date: Mon, 13 Nov 2006 13:24:55 +0000 (+0000) Subject: Fixed little sprintf error X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ad5f90d8629427099a06284158b0b07058cccaf0;p=gosa.git Fixed little sprintf error git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5085 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/functions.inc b/include/functions.inc index a4b893960..5f8eb2c58 100644 --- a/include/functions.inc +++ b/include/functions.inc @@ -1833,7 +1833,7 @@ function get_gosa_version() return (sprintf(_("GOsa development snapshot (Rev %s)"), $revision)); } else { $release= preg_replace('%^.*/([^/]+)/include/functions.inc.*$%', '\1', $svn_path); - return (sprintf(_("GOsa $release"), $revision)); + return (_("GOsa $release")); } }