diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-06-18 07:20:54 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-06-18 07:20:54 -0400 |
commit | 0ac3aa92df97ea7fd06bdcbb744b6c910cdb09ed (patch) | |
tree | ae3e67a882ff6502c6bd5e0babf182c93f5bd2dd /engine/lib/configuration.php | |
parent | 098976fd34e6c98675a20c19fd54329ec44f6261 (diff) | |
download | elgg-0ac3aa92df97ea7fd06bdcbb744b6c910cdb09ed.tar.gz elgg-0ac3aa92df97ea7fd06bdcbb744b6c910cdb09ed.tar.bz2 |
Fixes #4483 fixes undefined variable errors for non-deprecated functions in engine
Diffstat (limited to 'engine/lib/configuration.php')
-rw-r--r-- | engine/lib/configuration.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engine/lib/configuration.php b/engine/lib/configuration.php index 9bf1529d6..305aa00b6 100644 --- a/engine/lib/configuration.php +++ b/engine/lib/configuration.php @@ -476,10 +476,12 @@ function get_config($name, $site_guid = 0) { break; } + // @todo these haven't really been implemented in Elgg 1.8. Complete in 1.9. // show dep message if ($new_name) { + // $msg = "Config value $name has been renamed as $new_name"; $name = $new_name; - elgg_deprecated_notice($msg, $dep_version); + // elgg_deprecated_notice($msg, $dep_version); } // decide from where to return the value |