]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-16535 - better handling of the expired error
authormjollnir_ <mjollnir_>
Tue, 16 Sep 2008 18:17:28 +0000 (18:17 +0000)
committermjollnir_ <mjollnir_>
Tue, 16 Sep 2008 18:17:28 +0000 (18:17 +0000)
lib/portfolio/exporter.php

index d7663874c9ff567b2d680e12e3335f90f3465b1b..5465ef1f000b99d9c3ee927c65db6fd90a0ee5ce 100644 (file)
@@ -766,9 +766,11 @@ class portfolio_exporter {
     * through the usage of the backbutton
     */
     public static function print_expired_export() {
+        global $CFG;
         $title = get_string('exportexpired', 'portfolio');
-        print_header($title, $title);
+        print_header($title, $title, build_navigation(get_string('exportexpired', 'portfolio')));
         notify(get_string('exportexpireddesc', 'portfolio'));
+        print_continue($CFG->wwwroot);
         print_footer();
         exit;
     }