9 lines
342 B
PHP
9 lines
342 B
PHP
<?php
|
|
//---------------------------------------------------------------------
|
|
// Before we quit, handle any Garbage Collection that needs to be done
|
|
//---------------------------------------------------------------------
|
|
// If we're on a form, clean out any old data
|
|
if (isset($_SESSION['oldPostData'])) {
|
|
unset($_SESSION['oldPostData']);
|
|
}
|