summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-02 22:46:08 +0400
committerAndrew Dolgov <[email protected]>2013-04-02 22:46:28 +0400
commite3c394d391bace0370bb630c492051a790ca22e8 (patch)
tree7806cb089e6df3020f54af56b30c6154a102f09a
parent2f76e8583db5949a8e4d1179d18bcc2473dcaccf (diff)
remove THEME_VERSION_REQUIRED
reduce potential freak agitation
-rw-r--r--include/functions.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/functions.php b/include/functions.php
index ee575568a..6399ad5bb 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -39,10 +39,10 @@
* @return boolean True if defined successfully or not.
*/
function define_default($name, $value) {
- // Note: performence freaks should define everything in
- // config.php becasue if will make defined() run much faster,
- // see comment by 'tris+php at tfconsulting dot com dot au'
- // here:
+ // Note: performence freaks should define everything in
+ // config.php becasue if will make defined() run much faster,
+ // see comment by 'tris+php at tfconsulting dot com dot au'
+ // here:
// http://www.php.net/manual/en/function.defined.php#89886
defined($name) or define($name, $value);
}
@@ -66,8 +66,6 @@
define('SUBSTRING_FOR_DATE', 'SUBSTRING');
}
- define('THEME_VERSION_REQUIRED', 1.1);
-
/**
* Return available translations names.
*