]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Check for config file when running
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 4 Mar 2009 14:24:33 +0000 (06:24 -0800)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 4 Mar 2009 14:24:33 +0000 (06:24 -0800)
When running the full system, check for a config file, and throw an
error if none is found.

index.php
lib/common.php
lib/util.php

index 914ba5bde1453e2c21122a0766e8fc95fd8ac6cb..7f580b836783993e0d5aafa2df8e536590edff40 100644 (file)
--- a/index.php
+++ b/index.php
@@ -61,6 +61,14 @@ function main()
 {
     global $user, $action;
 
+    if (!_have_config()) {
+        $msg = sprintf(_("No configuration file found. Try running ".
+                         "the installation program first."));
+        $sac = new ServerErrorAction($msg);
+        $sac->showPage();
+        return;
+    }
+
     // For database errors
 
     PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
index 0fff3af2ea8b23704f97bd693a104b7482f71567..ca8dedeefe5e63d9438b888d4d5bc2b7cc5793c2 100644 (file)
@@ -187,6 +187,12 @@ foreach ($_config_files as $_config_file) {
     }
 }
 
+function _have_config()
+{
+    global $_have_a_config;
+    return $_have_a_config;
+}
+
 // XXX: Throw a conniption if database not installed
 
 // Fixup for laconica.ini
index 18e4f310ce0ef4b951809628dad0cb992fb0a0ee..f9a787d473262b52ad9ea5862803c36feda6fc06 100644 (file)
@@ -81,7 +81,7 @@ function common_language()
 
     // If there is a user logged in and they've set a language preference
     // then return that one...
-    if (common_logged_in()) {
+    if (_have_config() && common_logged_in()) {
         $user = common_current_user();
         $user_language = $user->language;
         if ($user_language)
@@ -315,6 +315,10 @@ function common_current_user()
 {
     global $_cur;
 
+    if (!_have_config()) {
+        return null;
+    }
+
     if ($_cur === false) {
 
         if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {