Changeset 1871 in ExiteCMS for trunk/maintenance.php


Ignore:
Timestamp:
10/19/08 12:10:12 (4 years ago)
Author:
hverton
Message:

updated the language pack code
fixed not being able to login when in maintenance mode
retro fix for rev1339 due to a bug in the v7.1 setup code
removed the .keys class from wikka.css, now uses the .button theme class

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 Copy of config.php 
        2 config.backup.php 
        3 _revision_.svn 
         1config.php 
  • trunk/maintenance.php

    r1776 r1871  
    1616require_once dirname(__FILE__)."/includes/theme_functions.php"; 
    1717 
     18// login requested, switch to setuser to perform the login 
     19if (isset($_POST['login'])) { 
     20    $_GET['login'] = "yes"; 
     21    include PATH_ROOT."setuser.php"; 
     22    exit; 
     23} 
     24 
    1825// logout requested, switch to setuser to perform the logout 
    1926if (isset($_POST['logout'])) { 
    20     $_REQUEST['logout'] = "yes"; 
     27    $_GET['logout'] = "yes"; 
    2128    include PATH_ROOT."setuser.php"; 
    2229    exit; 
Note: See TracChangeset for help on using the changeset viewer.