Ignore:
Timestamp:
Jun 5, 2009, 7:08:55 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Zapomenutí SQL aktualizace k minulému commitu.
  • Opraveno: Zvýraznění aktuální stránky v seznamu čísel stránek.
  • Opraveno: Správné zobrazení položek na stránky ve slovníčku.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/global_function.php

    r198 r199  
    3333  echo('<div style="text-align: center">');
    3434  $Line = mysql_fetch_row($Database->SQLCommand('SELECT count(*) FROM '.$Table.' '.$Where));       
    35   $ItemCount = floor($Line[0] / $ItemsPerPage);
     35  $ItemCount = $Line[0];
     36  $PageCount = floor($ItemCount / $ItemsPerPage) + 1;
    3637       
    37   echo('Počet položek: <strong>'.$Line[0].'</strong> &nbsp; Zobrazit stránku: ');
    38 
    39   if($CurrentPage > $ItemCount) $CurrentPage = ($ItemCount / $ItemsPerPage) - 1;
    40   for($Page = 1; $Page <= $ItemCount+1; $Page++)
     38  echo('Počet položek: <strong>'.$ItemCount.'</strong> &nbsp; Zobrazit stránku: ');
     39
     40  //if($CurrentPage > $PageCount) $CurrentPage = $PageCount;
     41  for($Page = 1; $Page <= $PageCount; $Page++)
    4142  {
    4243    if($CurrentPage == $Page) echo('<strong>'.$Page.'</strong> ');
Note: See TracChangeset for help on using the changeset viewer.