commit a3884f3077456d6e6263287582eea34df27b2581
Author: root <root@srv-xen-moodle08.tauntons.ac.uk>
Date:   Tue Oct 13 14:22:32 2009 +0100

    Fixed undefined variable notices in ILP block's list.php

diff --git a/blocks/ilp/list.php b/blocks/ilp/list.php
index ce8832d..18027bf 100644
--- a/blocks/ilp/list.php
+++ b/blocks/ilp/list.php
@@ -109,10 +109,10 @@
         $navlinks[] = array('name' => $course->shortname, 'link' => "$CFG->wwwroot/course/view.php?id=$course->id", 'type' => 'misc');
     }
 
-    $navlinks[] = array('name' => $strilps, 'link' => FALSE, 'type' => 'misc');
+    $navlinks[] = array('name' => get_string('ilps', 'block/ilp'), 'link' => FALSE, 'type' => 'misc');
 
     $navigation = build_navigation($navlinks);
-    print_header_simple($title, '', $navigation,'', '', true, '','');
+    print_header_simple('', '', $navigation,'', '', true, '','');
 
     if ($courseid and $access_isteacher and $course->id != $SITE->id) {
 

