diff --git a/mod/assignment/assignment.js b/mod/assignment/assignment.js
index 8e77ad923c5..07c1af3642b 100644
--- a/mod/assignment/assignment.js
+++ b/mod/assignment/assignment.js
@@ -13,8 +13,8 @@ function saveNext(){
}
function initNext(nextid, usserid) {
- assignment.nextid = nextid;
- assignment.userid = userid;
+ assignment.nextid = nextid;
+ assignment.userid = userid;
}
M.mod_assignment = {};
diff --git a/mod/chat/gui_header_js/users.php b/mod/chat/gui_header_js/users.php
index 246417c98aa..56d9ee6aea4 100644
--- a/mod/chat/gui_header_js/users.php
+++ b/mod/chat/gui_header_js/users.php
@@ -89,7 +89,6 @@ foreach ($chatusers as $chatuser) {
$min = $min < 10 ? '0'.$min : $min;
$sec = $sec < 10 ? '0'.$sec : $sec;
$idle = $min.':'.$sec;
-
$row = array();
$row[0] = $OUTPUT->user_picture($chatuser, array('courseid'=>$courseid, 'popup'=>true));
diff --git a/mod/quiz/module.js b/mod/quiz/module.js
index 5e505f918be..14bb6f68e43 100644
--- a/mod/quiz/module.js
+++ b/mod/quiz/module.js
@@ -95,7 +95,7 @@ M.mod_quiz.timer = {
update: function() {
var Y = M.mod_quiz.timer.Y;
var secondsleft = Math.floor((M.mod_quiz.timer.endtime - new Date().getTime())/1000);
-
+
// If this is a preview and time expired, display timeleft 0 and don't renew the timer.
if (M.mod_quiz.timer.preview && secondsleft < 0) {
Y.one('#quiz-time-left').setContent('0:00:00');
diff --git a/rss/index.html b/rss/index.html
index 8d1c8b69c3f..8b137891791 100644
--- a/rss/index.html
+++ b/rss/index.html
@@ -1 +1 @@
-
+
diff --git a/tags.txt b/tags.txt
index 39607e31c1d..189996d74f4 100644
--- a/tags.txt
+++ b/tags.txt
@@ -1,7 +1,7 @@
Generating a tags file
======================
-If you need a tags file so that you can jump around Moodle code
+If you need a tags file so that you can jump around Moodle code
easily in your editor (eg vim or emacs), you can generate one:
Exuberant ctags (default on Linux, can be compiled on other platforms):