diff --git a/application/helpers/hlp_header_helper.php b/application/helpers/hlp_header_helper.php
index 63924f4c8..203834ebb 100644
--- a/application/helpers/hlp_header_helper.php
+++ b/application/helpers/hlp_header_helper.php
@@ -44,13 +44,16 @@ function printPageTitle($title)
*/
function printRefreshMeta($refresh)
{
- if (is_numeric($refresh) && $refresh > 0)
+ if ($refresh != null)
{
- echo '';
- }
- else
- {
- show_error('The provided refresh parameter has to be a number greater then 0');
+ if (is_numeric($refresh) && $refresh > 0)
+ {
+ echo '';
+ }
+ else
+ {
+ show_error('The provided refresh parameter has to be a number greater then 0');
+ }
}
}