13 lines
321 B
PHP
13 lines
321 B
PHP
<?php # $Id$
|
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
|
# All rights reserved. See LICENSE file for licensing details
|
|
/* vim: set sts=4 ts=4 expandtab : */
|
|
|
|
if (IN_serendipity !== true) {
|
|
die ('Don\'t hack!');
|
|
}
|
|
|
|
echo WELCOME_BACK . ' ' . $_SESSION['serendipityUser'];
|
|
|
|
?>
|