Changeset 1158 in ExiteCMS for trunk/404handler.php


Ignore:
Timestamp:
12/03/07 21:40:54 (4 years ago)
Author:
hverton
Message:

added a locale type selection per module
fixed typo from 404handler.php
updated English language pack
fixed not being able to move a post to a thread in the same forum.post.move.tpl
getusergroups() now returns the array ordered by name
upgraded tiny_mce to version 2.1.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/404handler.php

    r1151 r1158  
    3333            $redirect = false; 
    3434            // preserve URL parameters (if any) 
    35             if (!$data['url_parms'] && isset($_SERVER['REDIRECT_QUERY_STRING'])) { 
     35            if ($data['url_parms'] && isset($_SERVER['REDIRECT_QUERY_STRING'])) { 
    3636                if (strpos($data['url_to'], '?') === false) { 
    3737                    $data['url_to'] .= "?" . $_SERVER['REDIRECT_QUERY_STRING']; 
     
    6969        include PATH_ROOT.$url; 
    7070    } 
     71    exit; 
    7172 
    7273} else { 
     
    9697        } 
    9798    } 
     99    exit; 
    98100} 
    99101?> 
Note: See TracChangeset for help on using the changeset viewer.