Update the correct always.php file and rebuild.

This commit is contained in:
Andrew McMillan 2010-03-11 23:09:40 +13:00
parent c4c05bd46d
commit 70fbd72000
2 changed files with 4 additions and 1 deletions

View File

@ -135,7 +135,7 @@ init_gettext( 'davical', '../locale' );
*
*/
$c->code_version = 0;
$c->version_string = '0.9.8.3'; // The actual version # is replaced into that during the build /release process
$c->version_string = '0.9.8.4'; // The actual version # is replaced into that during the build /release process
if ( isset($c->version_string) && preg_match( '/(\d+)\.(\d+)\.(\d+)(.*)/', $c->version_string, $matches) ) {
$c->code_major = $matches[1];
$c->code_minor = $matches[2];

View File

@ -102,6 +102,9 @@ else if ( @file_exists('/usr/local/etc/davical/config.php') ) {
else if ( @file_exists('../config/config.php') ) {
include('../config/config.php');
}
else if ( @file_exists('config/config.php') ) {
include('config/config.php');
}
else {
include('davical_configuration_missing.php');
exit;