diff --git a/admin/operators.php b/admin/operators.php
index c54aa46b..a3061154 100644
--- a/admin/operators.php
+++ b/admin/operators.php
@@ -245,7 +245,7 @@ function generate() {
-
+
" class="btn btn-default fa" />
diff --git a/admin/timezonetemplate.php b/admin/timezonetemplate.php
index ae0fe2e5..e585e9ea 100644
--- a/admin/timezonetemplate.php
+++ b/admin/timezonetemplate.php
@@ -95,7 +95,8 @@ $dtz = get_setting("DEFAULT_TIME_ZONE");
$sql = "SELECT name as value, name as description,
CASE WHEN name LIKE '$dtz' THEN 'selected=\'selected\'' ELSE '' END AS selected
- FROM mysql.time_zone_name";
+ FROM mysql.time_zone_name
+ WHERE `Name` LIKE 'Europe%' OR `Name` LIKE 'Asia%' ";
$tzl = $db->GetAll($sql);
diff --git a/config.inc.local.php.example b/config.inc.local.php.example
index e77296b6..bd323a14 100644
--- a/config.inc.local.php.example
+++ b/config.inc.local.php.example
@@ -29,6 +29,16 @@
*
*/
+
+// This Site name will appear as Limesurvey {ENDURL}
+define ('SITE_URL', 'http://Your site name.com/');
+
+// 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