I have devised a solution to this using PHP sessions. Here's how to do it!
In images.mdu, at the very top, after:
- Code: Select all
<?php
///////////////////////////////////////////////////////////////////
//
//Original images.mdu modified by FI-DD
//http://english.cutenews.ru/forum/profile.php?mode=viewprofile&u=2
//
///////////////////////////////////////////////////////////////////
Add:
- Code: Select all
session_start();
Then, find:
- Code: Select all
if ($area){
?>
And replace it with:
- Code: Select all
if (isset($_SESSION['area'])){
$area=$_SESSION['area'];
}
if ($area){
$_SESSION['area']=$area;
?>
Now, after uploading an image, you will return to where you previously were.
This is a godsend when used with FI-DD's avatar browser mod!
