Changeset 2796

Show
Ignore:
Timestamp:
11/11/08 23:38:49 (2 months ago)
Author:
chrismeller
Message:

Kill the current page once we redirect it. Fixes #749 and #593 supposedly.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/htdocs/system/classes/utils.php

    r2651 r2796  
    5555        } 
    5656        header('Location: ' . $url, true, 302); 
     57         
     58        // prevent the rest of the page from loading - we've moved on 
     59        exit(); 
    5760    } 
    5861