]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed some missing slashes
authormoodler <moodler>
Wed, 30 Jul 2003 05:20:19 +0000 (05:20 +0000)
committermoodler <moodler>
Wed, 30 Jul 2003 05:20:19 +0000 (05:20 +0000)
login/change_password.php
login/confirm.php
login/forgot_password.php
login/index.php
login/logout.php
login/signup.php

index 0a1439bcd7e67f5730e1c5fdac8a7e9fcb354fc8..5dea6482f141ddc809da15cb6d73e3318422733f 100644 (file)
@@ -50,7 +50,7 @@
                            notice($strpasswordchanged, "$CFG->wwwroot/user/view.php?id=$USER->id&course=$id");
             } else {
                            print_header($strpasswordchanged, $strpasswordchanged, $strpasswordchanged, "");
-                           notice($strpasswordchanged, "$CFG->wwwroot");
+                           notice($strpasswordchanged, "$CFG->wwwroot/");
             }
 
                        print_footer();
index 791bfb3e2f0b27d88d6bd3a43666924a4b63908c..ab5a3806a8af634cec203c6703f44ee53eb0166a 100644 (file)
@@ -62,6 +62,6 @@
         }
     }
 
-    redirect($CFG->wwwroot);
+    redirect("$CFG->wwwroot/");
 
 ?>
index 221e2dbd8a3459ee1ee155b7400913ef42e27a70..381de5a084c92301015916da1954875ce2a0173a 100644 (file)
@@ -60,7 +60,7 @@
 
                print_header(get_string("passwordconfirmchange"), get_string("passwordconfirmchange"));
             
-            notice(get_string('emailpasswordconfirmsent', '', $user->email), $CFG->wwwroot);
+            notice(get_string('emailpasswordconfirmsent', '', $user->email), "$CFG->wwwroot/");
         }
        }
 
@@ -71,7 +71,7 @@
        }
 
        print_header(get_string("senddetails"), get_string("senddetails"), 
-                 "<A HREF=\"$CFG->wwwroot/login\">".get_string("login")."</A> -> ".get_string("senddetails"), 
+                 "<A HREF=\"$CFG->wwwroot/login/index.php\">".get_string("login")."</A> -> ".get_string("senddetails"), 
                  "form.email");
        include("forgot_password_form.html");
     print_footer();
index 701630292e4ea43916c872207dc89085bf238a92..550d8226111e10515179904721769f256144954b 100644 (file)
@@ -60,7 +60,7 @@
                 redirect("$CFG->wwwroot/user/edit.php?id=$USER->id&course=$site->id");
 
             } else if (empty($SESSION->wantsurl)) {
-                redirect($CFG->wwwroot);
+                redirect("$CFG->wwwroot/");
 
             } else {
                 $wantsurl = $SESSION->wantsurl;
index 298aaa9d28fe27bdf2a6997bbd78d8e5c617ae11..ec50a1ab0c62599eb6b8d41d540cba95d67d6e50 100644 (file)
@@ -15,6 +15,6 @@
     unset($SESSION);
     unset($USER);
 
-    redirect($CFG->wwwroot);
+    redirect("$CFG->wwwroot/");
 
 ?>
index 11b670895aa707a39c3f1d9079bf76e6b8f37753..26a15d486b5991bcdfca5d7503c936399f0d61f2 100644 (file)
@@ -36,7 +36,7 @@
     
             $emailconfirm = get_string("emailconfirm");
             print_header($emailconfirm, $emailconfirm, $emailconfirm);
-            notice(get_string("emailconfirmsent", "", $user->email), $CFG->wwwroot);
+            notice(get_string("emailconfirmsent", "", $user->email), "$CFG->wwwroot/");
             exit;
         }
     }