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

Removed references to SITE_URL and OPERATOR_PANEL_NAME put other descriptions in config

This commit is contained in:
Adam Zammit
2015-08-03 13:58:41 +10:00
parent 6155da6d8c
commit 3da998446b
4 changed files with 9 additions and 14 deletions

View File

@@ -269,7 +269,7 @@ $surveys = $db->GetAll($sql);
<div class="form-group">
<label class="col-sm-4 control-label text-danger" ><?php echo T_("URL to forward respondents on self completion (required)");?>: </label>
<div class="col-sm-4">
<input class="form-control" name="lime_endurl" id="url" type="url" placeholder="<?php print SITE_URL ;?>" />
<input class="form-control" name="lime_endurl" id="url" type="url" />
</div>
</div>
</div>

View File

@@ -427,7 +427,7 @@ if (isset($_GET['modify']))
<div class="form-group">
<label class="col-sm-4 control-label text-danger" ><?php echo T_("URL to forward respondents on self completion (required)");?>: </label>
<div class="col-sm-4">
<input class="form-control" name="lime_endurl" id="url" type="url" placeholder="<?php print SITE_URL ;?>" value="<?php echo $rs['lime_endurl']; ?>"/>
<input class="form-control" name="lime_endurl" id="url" type="url" value="<?php echo $rs['lime_endurl']; ?>"/>
</div>
</div>
</div>

View File

@@ -302,6 +302,11 @@ 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');
/**
* Debugging
*/

View File

@@ -29,16 +29,6 @@
*
*/
// This Site name will appear as Limesurvey {ENDURL}
define ('SITE_URL', 'http://quexs.sourceforge.net/');
// Specify Your Local namings
define ('COMPANY_NAME', 'MY Company');
define ('ADMIN_PANEL_NAME','Admin Panel');
define ('OPERATOR_PANEL_NAME','Operator Panel');
/**
*
* Only some of the configuration directives are here. See the file: config.default.php for them all
@@ -55,7 +45,7 @@ define('VOIP_ENABLED',false);
/**
* The Asterisk server address
*/
define('VOIP_SERVER','asterisk.dcarf');
define('VOIP_SERVER', 'localhost');
/**
* Whether to automatically pop up a coding window when the respondent hangs up
@@ -72,7 +62,7 @@ define('QUEXS_PATH', '/quexs/');
*/
define('DB_USER', 'quexs');
define('DB_PASS', 'quexs');
define('DB_HOST', 'databasedev.dcarf');
define('DB_HOST', 'localhost');
define('DB_NAME', 'quexs');