X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-refbanner.php;h=1ebd70910161e73d3d6337f9b42c26642d92e575;hb=427719103e37ed2e27803b833dc5db5841e4dec9;hp=c3dd4ef69d889f8e8380596a29757b6ed91b42ac;hpb=143e78d4231adddd9e706cbf55ec5dd8c1651890;p=mailer.git diff --git a/inc/modules/admin/what-refbanner.php b/inc/modules/admin/what-refbanner.php index c3dd4ef69d..1ebd709101 100644 --- a/inc/modules/admin/what-refbanner.php +++ b/inc/modules/admin/what-refbanner.php @@ -6,7 +6,7 @@ * -------------------------------------------------------------------- * * File : what-refbanner.php * * -------------------------------------------------------------------- * - * Short description : Manage all referral banner * + * Short description : Manage all referal banner * * -------------------------------------------------------------------- * * Kurzbeschreibung : Alle Banner fuer die Ref-Links verwalten * * -------------------------------------------------------------------- * @@ -38,7 +38,7 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); $SEL = 0; if ((empty($_POST['url'])) || (empty($_POST['alternate']))) @@ -136,11 +136,11 @@ VALUES ('%s','%s','%s')", } } - // Referral levels + // Referal levels $result = SQL_QUERY("SELECT id, url, alternate, visible, counter, clicks FROM "._MYSQL_PREFIX."_refbanner ORDER BY url", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { - // Make referral banner editable and deletable + // Make referal banner editable and deletable $SW = 2; $OUT = ""; while (list($id, $url, $alt, $vis, $cntr, $clks) = SQL_FETCHROW($result)) { @@ -168,7 +168,7 @@ VALUES ('%s','%s','%s')", LOAD_TEMPLATE("admin_refbanner"); } - // Form for adding new referral levels + // Form for adding new referal levels LOAD_TEMPLATE("admin_add_banner"); }