Changeset 529


Ignore:
Timestamp:
Feb 23, 2013, 10:53:01 AM (11 years ago)
Author:
chronos
Message:
  • Opraveno: Řazení seznamu webu při úpravě.
  • Opraveno: Stránkování po uložení dat.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/banners.php

    r528 r529  
    1212    $Output .= ' selected="selected"';
    1313  $Output .= '></option>';
    14   $DbResult = $System->Database->select('Referrer', '`Id`, `Web`', 'Parent IS NULL');
     14  $DbResult = $System->Database->select('Referrer', '`Id`, `Web`', '`Parent` IS NULL ORDER BY `Web`');
    1515  while($Language = $DbResult->fetch_assoc())
    1616  if($Language['Id'] != $Self)
     
    103103  $Output .= $PageList['Output'];
    104104
    105   while($Line = $DbResult->fetch_assoc())
    106   {
    107     $Output .= '<a href="'.$Line['LastURL'].'">'.$Line['Web'].'</a> '.$Line['Description'].' <br />';   
    108   }
    109   $Output .= $PageList['Output'];
    110105  return($Output);
    111106}
     
    148143                'Show' => $_POST['Show'],
    149144                  'Parent' => $_POST['Parent'], 'Description' => $_POST['Description']));
     145          $_SERVER['QUERY_STRING'] = '';
    150146          $Output = ShowMessage('Nastavení uloženo');
    151147          $Output .= PromotionShow();
  • trunk/includes/Version.php

    r528 r529  
    11<?php
    22
    3 $Revision = 528; // Subversion revision
     3$Revision = 529; // Subversion revision
    44$DatabaseRevision = 524;
    55$ReleaseTime = '2013-02-20';
Note: See TracChangeset for help on using the changeset viewer.