SOURCES: eventum-config-setup.php - use single quotes

glen glen at pld-linux.org
Sun Nov 19 22:37:05 CET 2006


Author: glen                         Date: Sun Nov 19 21:37:05 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- use single quotes

---- Files affected:
SOURCES:
   eventum-config-setup.php (1.10 -> 1.11) 

---- Diffs:

================================================================
Index: SOURCES/eventum-config-setup.php
diff -u SOURCES/eventum-config-setup.php:1.10 SOURCES/eventum-config-setup.php:1.11
--- SOURCES/eventum-config-setup.php:1.10	Sun Nov 19 22:34:50 2006
+++ SOURCES/eventum-config-setup.php	Sun Nov 19 22:37:00 2006
@@ -29,51 +29,51 @@
 //
 
 // definitions of SQL variables
-define("APP_SQL_DBTYPE", "mysql");
-define("APP_SQL_DBHOST", "%{APP_SQL_DBHOST}%");
-define("APP_SQL_DBPORT", 3306);
-define("APP_SQL_DBNAME", "%{APP_SQL_DBNAME}%");
-define("APP_SQL_DBUSER", "%{APP_SQL_DBUSER}%");
-define("APP_SQL_DBPASS", "%{APP_SQL_DBPASS}%");
-
-define("APP_DEFAULT_DB", APP_SQL_DBNAME);
-define("APP_TABLE_PREFIX", "%{APP_TABLE_PREFIX}%");
-
-define("APP_NAME", "Eventum");
-define("APP_SHORT_NAME", APP_NAME); // used in the subject of notification emails
-define("APP_URL", "http://www.mysql.com/products/eventum/");
-define("APP_HOSTNAME", "%{APP_HOSTNAME}%");
-define("APP_SITE_NAME", APP_NAME);
-define("APP_RELATIVE_URL", "%{APP_RELATIVE_URL}%");
-define("APP_BASE_URL", "%{PROTOCOL_TYPE}%" . APP_HOSTNAME . APP_RELATIVE_URL);
-define("APP_COOKIE_URL", APP_RELATIVE_URL);
-define("APP_COOKIE_DOMAIN", APP_HOSTNAME);
-define("APP_COOKIE", "eventum");
-define("APP_COOKIE_EXPIRE", time() + (60 * 60 * 8));
-define("APP_PROJECT_COOKIE", "eventum_project");
-define("APP_PROJECT_COOKIE_EXPIRE", time() + (60 * 60 * 24));
+define('APP_SQL_DBTYPE', 'mysql');
+define('APP_SQL_DBHOST', '%{APP_SQL_DBHOST}%');
+define('APP_SQL_DBPORT', 3306);
+define('APP_SQL_DBNAME', '%{APP_SQL_DBNAME}%');
+define('APP_SQL_DBUSER', '%{APP_SQL_DBUSER}%');
+define('APP_SQL_DBPASS', '%{APP_SQL_DBPASS}%');
+
+define('APP_DEFAULT_DB', APP_SQL_DBNAME);
+define('APP_TABLE_PREFIX', '%{APP_TABLE_PREFIX}%');
+
+define('APP_NAME', 'Eventum');
+define('APP_SHORT_NAME', APP_NAME); // used in the subject of notification emails
+define('APP_URL', 'http://www.mysql.com/products/eventum/');
+define('APP_HOSTNAME', '%{APP_HOSTNAME}%');
+define('APP_SITE_NAME', APP_NAME);
+define('APP_RELATIVE_URL', '%{APP_RELATIVE_URL}%');
+define('APP_BASE_URL', '%{PROTOCOL_TYPE}%' . APP_HOSTNAME . APP_RELATIVE_URL);
+define('APP_COOKIE_URL', APP_RELATIVE_URL);
+define('APP_COOKIE_DOMAIN', APP_HOSTNAME);
+define('APP_COOKIE', 'eventum');
+define('APP_COOKIE_EXPIRE', time() + (60 * 60 * 8));
+define('APP_PROJECT_COOKIE', 'eventum_project');
+define('APP_PROJECT_COOKIE_EXPIRE', time() + (60 * 60 * 24));
 
-define("APP_DEFAULT_PAGER_SIZE", 5);
-define("APP_DEFAULT_REFRESH_RATE", 5); // in minutes
+define('APP_DEFAULT_PAGER_SIZE', 5);
+define('APP_DEFAULT_REFRESH_RATE', 5); // in minutes
 
 // new users will use these for default preferences
-define("APP_DEFAULT_ASSIGNED_EMAILS", 1); // if the user will recieve an email when an issue is assigned to him
-define("APP_DEFAULT_NEW_EMAILS", 0); // if the user will recieve an email when ANY issue is created
+define('APP_DEFAULT_ASSIGNED_EMAILS', 1); // if the user will recieve an email when an issue is assigned to him
+define('APP_DEFAULT_NEW_EMAILS', 0); // if the user will recieve an email when ANY issue is created
 
-define("APP_CHARSET", "UTF-8");
-define("APP_DEFAULT_LOCALE", "en_US");
+define('APP_CHARSET', 'UTF-8');
+define('APP_DEFAULT_LOCALE', 'en_US');
 
 // define colors used by eventum
-define("APP_CELL_COLOR", "#255282");
-define("APP_LIGHT_COLOR", "#DDDDDD");
-define("APP_MIDDLE_COLOR", "#CACACA");
-define("APP_DARK_COLOR", "#CACACA");
-define("APP_CYCLE_COLORS", "#DDDDDD,#CACACA");
-define("APP_INTERNAL_COLOR", "#9C494B");
+define('APP_CELL_COLOR', '#255282');
+define('APP_LIGHT_COLOR', '#DDDDDD');
+define('APP_MIDDLE_COLOR', '#CACACA');
+define('APP_DARK_COLOR', '#CACACA');
+define('APP_CYCLE_COLORS', '#DDDDDD,#CACACA');
+define('APP_INTERNAL_COLOR', '#9C494B');
 
-define("APP_BENCHMARK", false);
+define('APP_BENCHMARK', false);
 // if full text searching is enabled
-define("APP_ENABLE_FULLTEXT", %{APP_ENABLE_FULLTEXT}%);
+define('APP_ENABLE_FULLTEXT', %{APP_ENABLE_FULLTEXT}%);
 
 // define the type of password hashing to use (MD5, MD5-64)
 define('APP_HASH_TYPE', 'MD5');
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/eventum-config-setup.php?r1=1.10&r2=1.11&f=u



More information about the pld-cvs-commit mailing list