X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=surfbar.php;h=edff6dd5a42526849d6ae744b111d03aad0dc86d;hb=2c46da5e9d74e87def9ce4db377f26920eb30b28;hp=67762880e0d9e773ce62c0b9fead5d5910f50ad3;hpb=6d4a20b65520f17f009d2ac97845bd047a12fecf;p=mailer.git diff --git a/surfbar.php b/surfbar.php index 67762880e0..edff6dd5a4 100644 --- a/surfbar.php +++ b/surfbar.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Die Surfbar selbst * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -74,7 +69,7 @@ if (!isMember()) { redirectToUrl($url); } else { // Load header - loadIncludeOnce('inc/header.php'); + loadPageHeader(); // Is there a 'code' provided? if (isGetRequestElementSet('code')) { @@ -89,7 +84,7 @@ if (!isMember()) { $GLOBALS['__header_sent'] = 2; // Load footer - loadIncludeOnce('inc/footer.php'); + loadPageFooter(); } } else { // Redirect @@ -107,7 +102,7 @@ doSurfbarSelfMaintenance(); if ((isSurfbarReloadFull()) || ((!isFullPage()) && (in_array(getRequestElement('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) { // Reload-lock is full, surfbar stopped so... // Load header - loadIncludeOnce('inc/header.php'); + loadPageHeader(); // Load template if (((!isFullPage()) && (getRequestElement('frame') == 'stop2')) || (isFullPage())) { @@ -165,13 +160,13 @@ if ((isSurfbarReloadFull()) || ((!isFullPage()) && (in_array(getRequestElement(' } // END - if // Load header to avoid a bug - loadIncludeOnce('inc/header.php'); + loadPageHeader(); } else { // Reload to stop frame! redirectToSurfbarStopPage(); } - // All done, so fix notice for footer.php + // All done, so fix notice for loadTemplateFooter() $GLOBALS['__footer_sent'] = 1; } else { // Prepare content @@ -184,7 +179,7 @@ if ((isSurfbarReloadFull()) || ((!isFullPage()) && (in_array(getRequestElement(' //* DEBUG: */ exit('nextId='.$nextId); // Is there a valid id? - if ($nextId > 0) { + if (isValidId($nextId)) { // Then prepare other content $content = array( 'url_id' => $nextId, @@ -203,7 +198,7 @@ if ((isSurfbarReloadFull()) || ((!isFullPage()) && (in_array(getRequestElement(' } // Load header - loadIncludeOnce('inc/header.php'); + loadPageHeader(); // Determine template name $templateName = determineSurfbarTemplateName(); @@ -215,7 +210,7 @@ if ((isSurfbarReloadFull()) || ((!isFullPage()) && (in_array(getRequestElement(' // Load footer $GLOBALS['__footer_sent'] = 3; -loadIncludeOnce('inc/footer.php'); +loadPageFooter(); // [EOF] ?>