2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Remove LIME references

This commit is contained in:
Adam Zammit
2017-01-16 15:40:56 +11:00
parent 8fe48d73f9
commit 87391f25a6

View File

@@ -119,16 +119,6 @@ if (!defined('AUTO_POPUP')) define('AUTO_POPUP',false);
*/
if (!defined('SUPERVISOR_EXTENSION')) define('SUPERVISOR_EXTENSION',"1000");
/**
* The path to limesurvey
*/
if (!defined('LIME_PATH')) define('LIME_PATH', 'include/limesurvey/');
/**
* Automatically move to the next question when clicked in limesurvey
*/
if (!defined('LIME_AUTO_ADVANCE')) define('LIME_AUTO_ADVANCE', true);
/**
* The path to queXS from the server root
*/
@@ -147,11 +137,6 @@ if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER
$protocol = "https://";
}
/**
* The complete URL to limesurvey
*/
if (!defined('LIME_URL')) define('LIME_URL', $protocol . $_SERVER['SERVER_NAME'] . QUEXS_PORT . QUEXS_PATH . LIME_PATH);
/**
* The complete URL to this copy of queXS
*/
@@ -270,21 +255,6 @@ if (!defined('DB_HOST')) define('DB_HOST', 'localhost');
if (!defined('DB_NAME')) define('DB_NAME', 'quexs');
if (!defined('DB_TYPE')) define('DB_TYPE', 'mysqli');
/**
* The prefix for the limesurvey database
*/
if (!defined('LIME_PREFIX')) define('LIME_PREFIX','lime_');
/**
* Limesurvey database information (default is same as queXS database)
*/
if (!defined('LDB_USER')) define('LDB_USER', DB_USER);
if (!defined('LDB_PASS')) define('LDB_PASS', DB_PASS);
if (!defined('LDB_HOST')) define('LDB_HOST', DB_HOST);
if (!defined('LDB_NAME')) define('LDB_NAME', DB_NAME);
if (!defined('LDB_TYPE')) define('LDB_TYPE', DB_TYPE);
if (!defined('COMPANY_NAME')) define ('COMPANY_NAME', 'queXS ');
if (!defined('ADMIN_PANEL_NAME')) define ('ADMIN_PANEL_NAME',' Administration Panel');