<?php
/**************************************************************************
* *
* *
* Solution: eBlog *
* Release: 1.7 *
* File: admin/alerts.php *
* By: Emuci inc. *
* Website: http://www.emuci.com *
* Copyright: (C) 2010 Emcui inc. *
* *
* *
**************************************************************************
* *
* *
* This script is NOT freeware and is subjected to Emuci terms of use *
* located in the docs folder. *
* *
* *
*************************************************************************/
include 'global.php';
// Only authorised user allowed
if($_SESSION['permission'] == 1){
echo "<html dir=\"$blog_dir\">
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$blog_windows_encoding\">
<script type=\"text/javascript\">
function refresh (){
window.location = \"alerts.php\";
}
</script>
<center><input type=\"button\" value=\"$lang_admin_refreshList\" onClick=\"refresh()\"></center><br>
$alerts
</html>";
}
?>