16 lines
365 B
PHP
16 lines
365 B
PHP
<?php
|
|
include_once ("../include/global.inc.php");
|
|
include_once ("../include/auth.inc.php");
|
|
include_once ("../include/inc_user.inc.php");
|
|
|
|
// Check HTTP-Parameters
|
|
// Stocks
|
|
getSecHttpVars("1",array("tickerHeader"));
|
|
|
|
if ($tickerHeader != "") :
|
|
header("Content-Type: text/html; charset=ISO-8859-1\n");
|
|
endif;
|
|
|
|
|
|
echo getUserMessages("1");
|
|
?>
|