diff -Naurw moodle-clean/moodle/blocks/mrbs/web/search.php moodle-dev/blocks/mrbs/web/search.php --- moodle-clean/moodle/blocks/mrbs/web/search.php 2008-11-26 11:58:24.000000000 +0000 +++ moodle-dev/blocks/mrbs/web/search.php 2009-05-08 15:04:55.000000000 +0100 @@ -90,7 +90,7 @@ $search_pos = $total - ($total % $search["count"]); # Now we set up the "real" query using LIMIT to just get the stuff we want. -$sql = "SELECT E.id, E.create_by, E.name, E.description, E.start_time, R.area_id +$sql = "SELECT E.id, E.create_by, E.name, E.description, E.start_time, R.area_id, R.room_name FROM $tbl_entry E, $tbl_room R WHERE $sql_pred AND E.room_id = R.id @@ -145,6 +145,7 @@ + @@ -155,6 +156,7 @@ echo "".get_string('view')."\n"; echo "" . htmlspecialchars($row[1]) . "\n"; echo "" . htmlspecialchars($row[2]) . "\n"; + echo "" . htmlspecialchars($row[6]) . "\n"; echo "" . htmlspecialchars($row[3]) . "\n"; // generate a link to the day.php $link = getdate($row[4]);