From 737f92a4767cdba2bf53915fe6c0e52e1067c267 Mon Sep 17 00:00:00 2001 From: Aleisha Date: Tue, 12 May 2015 02:08:17 +0000 Subject: [PATCH] Bug 14184: Undefined $term causes noisy warns in C4/CourseReserves.pm This patch sets $term to be an empty string. To test: 1) Go to Course Reserves on the OPAC 2) Notice warns in error log 3) Apply patch 4) Reload page 5) Notice page still works but no warns --- C4/CourseReserves.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/CourseReserves.pm b/C4/CourseReserves.pm index 4a7bb22..7e160d0 100644 --- a/C4/CourseReserves.pm +++ b/C4/CourseReserves.pm @@ -1052,6 +1052,7 @@ sub SearchCourses { GROUP BY c.course_id "; + $term //= ''; $term = "%$term%"; @params = ($term) x 10; -- 1.7.10.4