-
Bug
-
Resolution: Fixed
-
Blocker
-
2.0.2
-
MOODLE_20_STABLE
-
MOODLE_20_STABLE
-
MDL-27116-themedir-config -
Easy
-
CFG->themedir do not work in 2.0.
Workaround
file: /lib/outputlib.php
Function: function find_theme_location
REPLACE
if (file_exists("$CFG->dirroot/theme/$themename/config.php")) {
$dir = "$CFG->dirroot/theme/$themename";
WITH
if (file_exists("$CFG->dirroot/theme/$themename/config.php"))
elseif (file_exists("$CFG->themedir/$themename/config.php")) {
$dir = "$CFG->themedir/$themename";
MDL-26955 will still be an issue.
- has been marked as being related by
-
MDL-26955 lang not being picked up from themes in custom themedir
-
- Closed
-