]> git.pld-linux.org Git - packages/eventum.git/commitdiff
- updated
authorElan Ruusamäe <glen@pld-linux.org>
Sun, 19 Nov 2006 21:34:50 +0000 (21:34 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    eventum-config-setup.php -> 1.10
    eventum-config.php -> 1.20

eventum-config-setup.php
eventum-config.php

index 8a83a729874de824d8c3d721f95aeded3a120e03..89f9e7d8b1eefc615492418cb71bdf18391b47a9 100644 (file)
@@ -77,5 +77,3 @@ define("APP_ENABLE_FULLTEXT", %{APP_ENABLE_FULLTEXT}%);
 
 // define the type of password hashing to use (MD5, MD5-64)
 define('APP_HASH_TYPE', 'MD5');
-
-?>
index 65e785b55eff1882e2fa14ac9597024500a90553..841a748c4b0e73a8e70e21e39ae6f13682ce323d 100755 (executable)
@@ -91,12 +91,24 @@ if (APP_BENCHMARK) {
 }
 
 // handle the language preferences now
-@session_start();
-include_once(APP_INC_PATH . "class.language.php");
+$avail_langs = array(
+    "en_US" =>  "English",
+#    "ru" =>  "Russian",
+#    "de" =>  "German",
+#    "fr" =>  "French",
+    "it" =>  "Italian",
+#    "fi" =>  "Finish",
+#    "es" =>  "Spanish",
+#    "nl" =>  "Dutch",
+    "sv" =>  "Swedish"
+);
+
+include_once(APP_INC_PATH . 'class.language.php');
+include_once(APP_INC_PATH . 'db_access.php');
+include_once(APP_INC_PATH . 'class.auth.php');
+include_once(APP_INC_PATH . 'class.misc.php');
 Language::setPreference();
 
-include_once APP_INC_PATH . 'class.misc.php';
-
 if (isset($_GET)) {
     $HTTP_POST_VARS = $_POST;
     $HTTP_GET_VARS = $_GET;
This page took 0.13311 seconds and 4 git commands to generate.