release 1.2.0

This commit is contained in:
root
2016-11-26 21:39:08 +01:00
parent 114633ab86
commit 62c84d4a34
414 changed files with 3949 additions and 19431 deletions

View File

@@ -45,6 +45,9 @@ if (isset($mysqlcon) && ($config = $mysqlcon->query("SELECT * FROM config"))) {
} elseif($_GET["lang"] == "it") {
$language = "it";
$_SESSION['language'] = "it";
} elseif($_GET["lang"] == "nl") {
$language = "nl";
$_SESSION['language'] = "nl";
} elseif($_GET["lang"] == "ro") {
$language = "ro";
$_SESSION['language'] = "ro";
@@ -124,6 +127,8 @@ if (isset($mysqlcon) && ($config = $mysqlcon->query("SELECT * FROM config"))) {
$nextupinfomsg3 = $config[0]['nextupinfomsg3'];
$shownav = $config[0]['shownav'];
$showgrpsince = $config[0]['showgrpsince'];
$resetexcept = $config[0]['resetexcept'];
$upchannel = $config[0]['upchannel'];
}
}
if(!isset($language) || $language == "en") {
@@ -134,6 +139,8 @@ if(!isset($language) || $language == "en") {
require_once(substr(dirname(__FILE__),0,-5).'languages/core_de.php');
} elseif($language == "it") {
require_once(substr(dirname(__FILE__),0,-5).'languages/core_it.php');
} elseif($language == "nl") {
require_once(substr(dirname(__FILE__),0,-5).'languages/core_nl.php');
} elseif($language == "ro") {
require_once(substr(dirname(__FILE__),0,-5).'languages/core_ro.php');
} elseif($language == "ru") {

15
other/phpcommand.php Normal file
View File

@@ -0,0 +1,15 @@
<?PHP
## Uncomment the command you need to run PHP
## This are only examples
## If you miss one, feel free to add it
## Only one command should be active at the same time!
$phpcommand = "php";
#$phpcommand = "php56";
#$phpcommand = "php70";
#$phpcommand = "/usr/bin/php5";
#$phpcommand = "/usr/bin/php";
#$phpcommand = "C:\PHP5\php.exe";
#$phpcommand = "C:\PHP7\php.exe";
#$phpcommand = "\"C:\Program Files (x86)\PHP\php.exe\""; // on blanks you need special marks \"
#$phpcommand = "c:\wamp\bin\php\php.exe";
?>