Revert "MDL-39871 Find a solution to handling RTL switching in CSS"

This reverts commit 2e68b1254f.
This reverts commit 5b2ed8b5ff.
This commit is contained in:
Damyon Wiese 2013-08-29 15:35:19 +08:00
parent 09d7ecbad8
commit 77bb4425e1
5 changed files with 49 additions and 44 deletions

View file

@ -487,16 +487,6 @@ class theme_config {
}
}
// Use parent theme's "blockrtlmanipulations" if it was defined and if it was not defined on current theme.
if (empty($this->blockrtlmanipulations)) {
foreach ($this->parent_configs as $parent_config) {
if (!empty($parent_config->blockrtlmanipulations)) {
$this->blockrtlmanipulations = $parent_config->blockrtlmanipulations;
continue;
}
}
}
//fix arrows if needed
$this->check_theme_arrows();
}