Forums / Cotonti / Extensions / Account plugin

DemptD
#13228 2009-06-15 15:14
Hmm, didnt work. This is what i made:

<?php
/* ====================
Seditio - Website engine
Copyright (C) 2005 Neocrome
http://www.neocrome.net

[BEGIN_SED]
File=plugins/account/account.redirect.php
Version=100
Type=Plugin
Author=Dyllon
Description=Redirects back to plugin
[END_SED]

[BEGIN_SED_EXTPLUGIN]
Code=account
Part=account.redirect
File=account.redirect
Hooks=message.main
Tags=
Minlevel=0
Order=10
[END_SED_EXTPLUGIN]
==================== */

if (!defined('SED_CODE')) { sed_diefatal('Wrong URL.'); }

if ($msg == '104' && $cfg['plugin']['account']['redirect'] == '1')
	{ header("Refresh: '1'; url=plug.php?e=account"); }

?>