X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-surfbar_stats.php;h=fc10c5fca38ec340a76d3cf7117e22145fa83a30;hb=63292e4d81307117912793820b0064319d50a611;hp=adf2c6a5bd3aac4365ae9089416f96634d13e47b;hpb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;p=mailer.git diff --git a/inc/modules/admin/what-surfbar_stats.php b/inc/modules/admin/what-surfbar_stats.php index adf2c6a5bd..fc10c5fca3 100644 --- a/inc/modules/admin/what-surfbar_stats.php +++ b/inc/modules/admin/what-surfbar_stats.php @@ -45,13 +45,13 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addMenuDescription('admin', __FILE__); // Is the 'url_id' set? -if (isGetRequestElementSet(('url_id'))) { +if (isGetRequestParameterSet(('url_id'))) { // Generate general statistics $result = SQL_QUERY_ESC("SELECT `userid`,`count` AS `total_visits`, UNIX_TIMESTAMP(`last_surfed`) AS `last_surfed` FROM `{?_MYSQL_PREFIX?}_surfbar_stats` WHERE `url_id`=%s ORDER BY `userid` ASC", - array(bigintval(getRequestElement('url_id'))), __FILE__, __LINE__); + array(bigintval(getRequestParameter('url_id'))), __FILE__, __LINE__); // Entries found? if (SQL_NUMROWS($result) > 0) {