Merge remote branch 'kc/master' into new/enh/bug_5917
[koha_gimpoz] / misc / cronjobs / gather_print_notices.pl
index fd33a17..03b65b4 100755 (executable)
@@ -13,9 +13,9 @@
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# You should have received a copy of the GNU General Public License along
+# with Koha; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 use strict;
 use warnings;
@@ -73,9 +73,11 @@ open OUTPUT, '>', File::Spec->catdir( $output_directory, "holdnotices-" . $today
 my $template = C4::Output::gettemplate( 'batch/print-notices.tmpl', 'intranet', new CGI );
 my $stylesheet_contents = '';
 
-open STYLESHEET, '<', $stylesheet;
-while ( <STYLESHEET> ) { $stylesheet_contents .= $_ }
-close STYLESHEET;
+if ($stylesheet) {
+  open STYLESHEET, '<', $stylesheet;
+  while ( <STYLESHEET> ) { $stylesheet_contents .= $_ }
+  close STYLESHEET;
+}
 
 $template->param(
     stylesheet => $stylesheet_contents,