* Add are_notices_pending()

* Remove trailing space
This commit is contained in:
Scott Ullrich 2005-07-11 20:53:49 +00:00
parent 57bad82986
commit 73ef871b3a

View File

@ -157,4 +157,13 @@ 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;
}
?>