X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fframetester.php;h=d874566ebd34b09a7225ba1944d87b55b82523d8;hp=09898ff036a0818c34be7ee2463df0cef1fb2e98;hb=e9da1508b2a3ccbf63adc999981674740a47e074;hpb=cb22480488263dac67caa6f5b6476421527900ad diff --git a/inc/modules/frametester.php b/inc/modules/frametester.php index 09898ff036..d874566ebd 100644 --- a/inc/modules/frametester.php +++ b/inc/modules/frametester.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -46,13 +46,12 @@ if (isGetRequestElementSet('order')) { // Order number placed, is he also logged in? if (isMember()) { // Ok, test passed... :) - $result = SQL_QUERY_ESC("SELECT `url` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s AND `sender`=%s AND `data_type`='TEMP' LIMIT 1", - array(bigintval(getRequestElement('order')), getMemberId()), __FILE__, __LINE__); + $content = getPoolDataFromId(getRequestElement('order')); // Finally is the entry valid? - if (SQL_NUMROWS($result) == 1) { + if ((isFilledArray($content)) && ($content['data_type'] == 'TEMP')) { // Load subject and URL (but forwhat do we need the subject line here??? - list($url) = SQL_FETCHROW($result); + list($url) = sqlFetchRow($result); // This fixes a white page setPostRequestElement('url', $url); @@ -63,9 +62,6 @@ if (isGetRequestElementSet('order')) { // Matching line not found redirectToUrl('modules.php?module=index&what=login'); } - - // Free memory - SQL_FREERESULT($result); } else { // He is no longer logged in redirectToUrl('modules.php?module=index&what=login');