From 6e2ec568aa3f7df873ad322192cc20e1776cf4a2 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Fri, 15 Jul 2005 22:22:10 +0000 Subject: * Restore are_notices_pending(). Getting the actual message is expensive on smaller devices if none are pending. * Remove trailing file space. --- etc/inc/notices.inc | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/etc/inc/notices.inc b/etc/inc/notices.inc index 60789ce..b53a5ed 100644 --- a/etc/inc/notices.inc +++ b/etc/inc/notices.inc @@ -156,4 +156,14 @@ function print_notice_box($category = "all") { print_info_box_np(print_notices($notices, $category)); return; } -?> + + +function are_notices_pending($category = "all") { + global $notice_path; + if(file_exists($notice_path)) { + return true; + } + return false; +} + +?> \ No newline at end of file -- cgit v1.1