March 19th, 2008, 08:51 PM
|
#12 (permalink)
|
| Ultimate Member
Join Date: Jun 2007
Posts: 1,340
|
Okay, I replaced this: Quote:
typecast($_REQUEST, array('ppaction' => STRING,'albumid' => INT));
typecast($_POST, array('admin' => INT, 'category' => INT, 'do' => STRING, 'isprivate' => STRING, 'canzip' => STRING,
'albumdesc' => STRING, 'albumname' => STRING, 'theme' => STRING, 'parent' => INT,
'sortorder' => INT, 'catorder' => INT, 'frames' => STRING, 'oldstat' => STRING,
'albumowner' => STRING, 'thumbtype' => INT, 'intro' => STRING, 'introtitle' => STRING,
'introcopy' => STRING) );
|
with this as stated above: Quote:
typecast($_REQUEST, array('ppaction' => STRING,'albumid' => INT));
typecast($_POST, array('admin' => INT, 'category' => INT, 'do' => STRING, 'isprivate' => STRING, 'canzip' => STRING,
'albumdesc' => STRING, 'albumname' => STRING, 'theme' => STRING, 'parent' => INT,
'sortorder' => INT, 'catorder' => INT, 'frames' => STRING, 'oldstat' => STRING,
'albumowner' => STRING, 'thumbtype' => INT, 'intro' => STRING, 'introtitle' => STRING) );
$introcopy = $_POST['introcopy'];
| NO difference in the way it handles to intro...
|
| |