Commit 9618f862db7c72f627e92ded61c9b34e8b4622fe

Authored by megan_w
1 parent d876bf3f

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.

Committed by: Megan Watson
Reviewed by: Jonathan Byrne



git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8192 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 2 additions and 0 deletions
config/dmsDefaults.php
@@ -719,6 +719,8 @@ if ($checkup !== true) { @@ -719,6 +719,8 @@ if ($checkup !== true) {
719 if ($name) { 719 if ($name) {
720 $default->versionName = sprintf('%s %s', $default->versionName, $name); 720 $default->versionName = sprintf('%s %s', $default->versionName, $name);
721 } 721 }
  722 + }else{
  723 + $default->versionName = $default->versionName.' '._kt('(Community Edition)');
722 } 724 }
723 } 725 }
724 726