diff options
author | Damien Lallement <dams@mageia.org> | 2012-08-13 10:45:23 +0000 |
---|---|---|
committer | Damien Lallement <dams@mageia.org> | 2012-08-13 10:45:23 +0000 |
commit | ff32e499745367b816d10f25e63ff3328214c32f (patch) | |
tree | 238d19398f5951d69d32c8ed9a460f5193446981 /common/admin/inc/auth.inc.php | |
parent | 5bed2fb79d7b554dd90d2eb58422cfa649aebe08 (diff) | |
download | planet-ff32e499745367b816d10f25e63ff3328214c32f.tar planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.gz planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.bz2 planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.xz planet-ff32e499745367b816d10f25e63ff3328214c32f.zip |
- Import moonmoon
- Create repo per langs
Diffstat (limited to 'common/admin/inc/auth.inc.php')
-rw-r--r-- | common/admin/inc/auth.inc.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/admin/inc/auth.inc.php b/common/admin/inc/auth.inc.php new file mode 100644 index 0000000..d21467b --- /dev/null +++ b/common/admin/inc/auth.inc.php @@ -0,0 +1,11 @@ +<?php +include (dirname(__FILE__).'/pwd.inc.php'); + +if ( isset($_COOKIE['auth']) && $_COOKIE['auth'] == $password ) { + //ok, cool +} else { + setcookie('auth','', time()-3600); + header('Location: login.php'); + die; +} +?>
\ No newline at end of file |