translated notify.php

This commit is contained in:
Lars Kneschke 2003-11-27 23:17:13 +00:00
parent 11768fb048
commit 69c3f95807

View File

@ -19,15 +19,19 @@
'currentapp' => 'notifywindow' 'currentapp' => 'notifywindow'
); );
include('header.inc.php'); include('header.inc.php');
$charSet = $GLOBALS['phpgw']->translation->charset();
?> ?>
<html> <html>
<head> <head>
<meta http-equiv="Refresh" content="300"> <meta http-equiv="Refresh" content="300">
<?php
print "<meta http-equiv=\"content-type\" content=\"text/html; charset=$charSet\" />";
?>
<title>Notify Window</title> <title>Notify Window</title>
</head> </head>
<body bgcolor="<?php echo $GLOBALS['phpgw_info']['theme']['bg_color']; ?>" alink="blue" vlink="blue" link="blue"> <body bgcolor="<?php echo $GLOBALS['phpgw_info']['theme']['bg_color']; ?>" alink="blue" vlink="blue" link="blue">
<table> <table>
<tr><td><a href="<?php echo $GLOBALS['phpgw']->link('/notify.php'); ?>">Check Now</a></td></tr> <tr><td><a href="<?php echo $GLOBALS['phpgw']->link('/notify.php'); ?>"><?php print lang('Check Now'); ?></a></td></tr>
<?php <?php
$GLOBALS['phpgw']->hooks->process('notifywindow'); $GLOBALS['phpgw']->hooks->process('notifywindow');
?> ?>