Fixed undefined variable in lib/init.php

This commit is contained in:
Andreas Burchert (scarya)
2011-03-20 10:25:39 +01:00
parent 3fc3174788
commit 6b27a00007

View File

@@ -431,7 +431,9 @@ else
$action = '';
// clear request data
unset($_SESSION['requestData']);
if (isset($_SESSION)) {
unset($_SESSION['requestData']);
}
}
if(isset($_POST['page']))