Removed errant "V" in database error message.
authorChuck Scott <cscott@gaslightmedia.com>
Wed, 24 Feb 2016 21:38:04 +0000 (16:38 -0500)
committerChuck Scott <cscott@gaslightmedia.com>
Wed, 24 Feb 2016 21:38:04 +0000 (16:38 -0500)
classes/glmPluginSupport.php

index b138c20..34a01d6 100644 (file)
@@ -208,7 +208,7 @@ class GlmPluginSupport
 
                     // Check if the database version set for this plug-in is invalid - not in the dbVersions array
                     if (!isset($a['database']['dbVersions'][$dbVersion])) {
-                        $startupNotices .= "<p>The last database version set for the ".$a['name']." (V$dbVersion) isn't valid.<p>";
+                        $startupNotices .= "<p>The last database version set for the ".$a['name']." ($dbVersion) isn't valid.<p>";
                         $db_error = true;
                     } else {