X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=surfbar.php;h=4bfb8caaaf44ed98aa718246ce9f4234a7a9ecbc;hb=2c2a7283eb197e3bf3cdb359ca62f7eee15ced1f;hp=d65986193579c31409ff9397d53c0c4cabba1839;hpb=740ebc7e0fa047159dc57a3a4bf7365c69ad9e17;p=mailer.git diff --git a/surfbar.php b/surfbar.php index d659861935..4bfb8caaaf 100644 --- a/surfbar.php +++ b/surfbar.php @@ -122,12 +122,9 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestParameterSet('frame')) && (in // This makes the footer appear again unsetGetRequestParameter('frame'); } elseif ((isGetRequestParameterSet('frame')) && (getRequestParameter('frame') == 'stats')) { - // Get total points amount - $points = countSumTotalData(getMemberId(), 'user_points', 'points') - countSumTotalData(getMemberId(), 'user_data', 'used_points'); - // Prepare content $content = array( - 'points' => $points, + 'points' => getTotalPoints(getMemberId()), 'reload' => (getConfig('surfbar_stats_reload') * 1000) ); @@ -194,8 +191,8 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestParameterSet('frame')) && (in if ($nextId > 0) { // Then prepare other content $content = array( - 'url_id' => $nextId, - 'xxx' => str_repeat('X', strlen(SURFBAR_GET_RELOAD_TIME($nextId))) + 'url_id' => $nextId, + 'xxx' => str_repeat('X', strlen(SURFBAR_GET_RELOAD_TIME($nextId))), ); // Update salt (double-call lock!) and statistics @@ -213,7 +210,7 @@ if ((SURFBAR_CHECK_RELOAD_FULL()) || ((isGetRequestParameterSet('frame')) && (in loadIncludeOnce('inc/header.php'); // Load that template - //* DEBUG: */ die("templateName={$templateName}
\ncontent=
".print_r($content, true)."
"); + //* DEBUG: */ die('templateName=' . $templateName . '
content=
' . print_r($content, true) . '
'); loadTemplate($templateName, false, $content); }