From 10d84b39b022e293e673dbbdfa9143ee1a848170 Mon Sep 17 00:00:00 2001 From: Megan Watson Date: Fri, 29 Feb 2008 08:48:05 +0000 Subject: [PATCH] KTS-3106 "On the log-in/logout dialog and the footer of the KTDMS web browser interface there is no version description added to the version." Fixed. If the wintools plugin is not enabled, Community Edition is appended to the version name. --- config/dmsDefaults.php | 2 ++ 1 file changed, 2 insertions(+), 0 deletions(-) diff --git a/config/dmsDefaults.php b/config/dmsDefaults.php index 054555a..11f71c4 100644 --- a/config/dmsDefaults.php +++ b/config/dmsDefaults.php @@ -719,6 +719,8 @@ if ($checkup !== true) { if ($name) { $default->versionName = sprintf('%s %s', $default->versionName, $name); } + }else{ + $default->versionName = $default->versionName.' '._kt('(Community Edition)'); } } -- libgit2 0.21.4