Subversion-Projekte lars-tiefland.em_wm

Revision

Revision 114 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
132 lars 1
<?php
114 lars 2
    define( "IN_ADMIN", true );
3
    require_once ( "include/common.php" );
4
    if ( $a->getAuth() )
5
    {
6
        if ( defined("FINISHED") and $u->u_type != 1 )
7
        {
8
            User_Logout();
9
            $smarty->assign( "meld", $common["an_error_occured"] );
10
            $smarty->assign( "db_meld", $f );
11
            $smarty->assign( "error", true );
12
            $smarty->assign( "user", "" );
13
            $smarty->display( "login.tpl" );
14
        }
15
        else
16
        {
17
            $smarty->assign( "meld", $common["login_success"] );
18
            $smarty->display( "meld.tpl" );
19
        }
20
    }
19 lars 21
?>