From: Dan Wells Date: Thu, 7 Jun 2012 14:32:59 +0000 (-0400) Subject: Fix broken non-RSS bookbag feeds X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=27959a57b75dca8f41aeaee3d1d066ba672b7bd6;p=evergreen%2Ftadl.git Fix broken non-RSS bookbag feeds This commit addresses LP#1010036 by defining a stub 'description()' method. Lack of such a method was causing internal server errors for other kinds of feeds. Signed-off-by: Dan Wells Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat/Feed.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat/Feed.pm index fde04eb461..57bb67f88c 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat/Feed.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat/Feed.pm @@ -223,6 +223,7 @@ sub link {}; sub title {}; sub update_ts {}; sub creator {}; +sub description {}; #----------------------------------------------------------