Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
Bump version, port change for alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
DBezemer committed Jul 17, 2014
1 parent 47da3ac commit 3d7d4bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions layout/frontpage.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@
} else {
$alert1icon = $alertsuccess;
}
$alert1title = 'alert1title_'.current_language();
$alert1text = 'alert1text_'.current_language();
$alert1title = 'alert1title';
$alert1text = 'alert1text';
echo $alert1icon.'<span class="title">'.$PAGE->theme->settings->$alert1title.'</span>'.$PAGE->theme->settings->$alert1text; ?>
</div>
<?php } ?>
Expand All @@ -106,8 +106,8 @@
} else {
$alert2icon = $alertsuccess;
}
$alert2title = 'alert2title_'.current_language();
$alert2text = 'alert2text_'.current_language();
$alert2title = 'alert2title';
$alert2text = 'alert2text';
echo $alert2icon.'<span class="title">'.$PAGE->theme->settings->$alert2title.'</span>'.$PAGE->theme->settings->$alert2text; ?>
</div>
<?php } ?>
Expand All @@ -124,8 +124,8 @@
} else {
$alert3icon = $alertsuccess;
}
$alert3title = 'alert3title_'.current_language();
$alert3text = 'alert3text_'.current_language();
$alert3title = 'alert3title';
$alert3text = 'alert3text';
echo $alert3icon.'<span class="title">'.$PAGE->theme->settings->$alert3title.'</span>'.$PAGE->theme->settings->$alert3text; ?>
</div>
<?php } ?>
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2014071700; // YYYYMMDDVV.
$plugin->version = 2014071701; // YYYYMMDDVV.
$plugin->maturity = MATURITY_STABLE; // this version's maturity level.
$plugin->release = '2.7.3 (Build: 20140717)';
$plugin->requires = 2013101800; // Requires Moodle 2.6.
Expand Down

0 comments on commit 3d7d4bb

Please sign in to comment.