Ignore:
Timestamp:
Sep 8, 2016, 11:14:39 PM (8 years ago)
Author:
chronos
Message:
  • Fixed: PassengerCount table column usage.
  • Fixed: Google map with empty waypoints.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Ride/Ride.php

    r3 r4  
    7070  `Sequence` int(11) NOT NULL,
    7171  `Price` int(11) NOT NULL,
    72   `PassengerCount` int(11) NOT NULL,
    7372  PRIMARY KEY (`Id`),
    7473  KEY `Ride` (`Ride`)
     
    8382  `RideStopFrom` int(11) NOT NULL,
    8483  `RideStopTo` int(11) NOT NULL,
     84  `PassengerCount` int(11) NOT NULL,
    8585  PRIMARY KEY (`Id`),
    8686  KEY `User` (`User`),
     
    130130    $Output = '<img src="" width="200" height="50" alt="Logo"/> '.
    131131      '<a href="'.$this->System->Link('/hledat/').'">Hledat jízdu</a> nebo '.
    132       '<a href="'.$this->System->Link('/nabídnout/').'">Nabídnout jízdu</a>';
     132      '<a href="'.$this->System->Link('/nova-jizda/').'">Nabídnout jízdu</a>';
    133133    return($Output);
    134134  }
     
    343343        '<tr><td>&nbsp;</td></tr>';
    344344    }
    345     $Output .= '</table';
     345    $Output .= '</table>';
    346346
    347347    return($Output);
     
    465465            'Price' => $TrackItem['Price'],
    466466            'Sequence' => $Index,
     467            'PassengerCount' => 0,
    467468          ));
    468469        }
Note: See TracChangeset for help on using the changeset viewer.