Skip to content

Commit

Permalink
V2.9.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gjb2048 committed Mar 19, 2016
1 parent 83ec9dc commit 9097db6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Version Information
===================
Version 2.9.1.2
1. Use the 'pluginname' string of the theme in the selection box, but still capitalise first letter.

Version 2.9.1.1
1. Improvements for ARIA.
2. Style improvements.
Expand Down
2 changes: 1 addition & 1 deletion block_theme_selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function get_content() {
$themes = core_component::get_plugin_list('theme');
$options = array();
foreach ($themes as $theme => $themedir) {
$options[$theme] = ucfirst($theme);
$options[$theme] = ucfirst(get_string('pluginname', 'theme_'.$theme));
}
if ($CFG->block_theme_selector_urlswitch == 1) {
$current = core_useragent::get_device_type_theme('default');
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

defined('MOODLE_INTERNAL') || die;

$plugin->release = '2.9.1.1';
$plugin->version = 2015082103; // The current plugin version (Date: YYYYMMDDXX)
$plugin->release = '2.9.1.2';
$plugin->version = 2015082104; // The current plugin version (Date: YYYYMMDDXX)
$plugin->requires = 2015051100.00; // 2.9 (Build: 20150511).
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'block_theme_selector'; // Full name of the plugin (used for diagnostics)

0 comments on commit 9097db6

Please sign in to comment.