1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-10 10:17:17 +02:00

MDL-43277 block_navigation: Trim from the left for long names

This commit is contained in:
Andrew Nicols 2014-04-15 10:24:32 +08:00
parent 564a413367
commit b359900cd7

@ -163,7 +163,7 @@ class block_navigation extends block_base {
redirect($url); redirect($url);
} }
$trimmode = self::TRIM_LEFT; $trimmode = self::TRIM_RIGHT;
$trimlength = 50; $trimlength = 50;
if (!empty($this->config->trimmode)) { if (!empty($this->config->trimmode)) {