GenCode:
authorTim Otten <totten@think.hm>
Tue, 4 Jun 2013 01:42:50 +0000 (01:42 +0000)
committerJenkins <jenkins@test-ubu1204-2.civicrm.osuosl.org>
Tue, 4 Jun 2013 01:45:12 +0000 (01:45 +0000)
 * Remove shell_exec dependency.
 * In the web footer, report the same version number used everywhere else

xml/GenCode.php

index bd7d8879c89aaa3d63ea54942f677637ef4dd222..582a0fffe7c85f5df06871457be76d32a826090c 100644 (file)
@@ -141,7 +141,7 @@ Alternatively you can get a version of CiviCRM that matches your PHP version
       exit();
     }
 
-    $this->generateTemplateVersion($argVersion);
+    $this->generateTemplateVersion($db_version);
 
     $this->setupCms($argCms, $db_version);
 
@@ -355,16 +355,8 @@ Alternatively you can get a version of CiviCRM that matches your PHP version
     $this->beautifier->save();
   }
 
-  function generateTemplateVersion($argVersion) {
-    // add the Subversion revision to templates
-    // use svnversion if the version was not specified explicitely on the commandline
-    if (isset($argVersion) and $argVersion != '') {
-      $svnversion = $argVersion;
-    }
-    else {
-      $svnversion = `svnversion .`;
-    }
-    file_put_contents($this->tplCodePath . "/CRM/common/version.tpl", $svnversion);
+  function generateTemplateVersion($dbVersion) {
+    file_put_contents($this->tplCodePath . "/CRM/common/version.tpl", $dbVersion);
   }
 
   function findLocales() {