Skip to content

Commit

Permalink
Dev Reverted last commit since it didn't solve the problem - Moved ve…
Browse files Browse the repository at this point in the history
…rsion information to a separate file.

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey_dev@7643 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Sep 15, 2009
1 parent 4f77cc6 commit 607a139
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
11 changes: 2 additions & 9 deletions common.php
Expand Up @@ -18,19 +18,12 @@
//Ensure script is not run directly, avoid path disclosure
if (!isset($dbprefix) || isset($_REQUEST['dbprefix'])) {safe_die("Cannot run this script directly");}

####################### Do NOT touch the following entries #######################

$versionnumber = "1.86RC";
$dbversionnumber = 139;
$buildnumber = '$Rev$';

##################################################################################
// Include version information
require($rootdir.'/version.php');

// Check for most necessary requirements
// Now check for PHP & db version
// Do not localize/translate this!
$buildnumber = trim(substr($buildnumber,6,5));

$ver = explode( '.', PHP_VERSION );
$ver_num = $ver[0] . $ver[1] . $ver[2];
$dieoutput='';
Expand Down
7 changes: 7 additions & 0 deletions version.php
@@ -0,0 +1,7 @@
<?php

$versionnumber = "1.86RC";
$dbversionnumber = 139;
$buildnumber = '';

?>

0 comments on commit 607a139

Please sign in to comment.