Changeset 21
Legend:
- Unmodified
- Added
- Removed
-
trunk/SQL/Upgrade.txt
r15 r21 14 14 ALTER TABLE `Import` 15 15 MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; 16 -
trunk/index.php
r20 r21 375 375 $Output .= '<div class="page-title">Family '.$DbRow['Name'].'</div>'; 376 376 377 378 377 $Where = 'Team='.$TeamId; 379 378 … … 603 602 if (!is_numeric($RunnerId)) die('Runner id needs to be numeric'); 604 603 605 $DbResult = $this->Database->query('SELECT * FROM Runner WHEREId='.$RunnerId);604 $DbResult = $this->Database->query('SELECT Runner.Name, Team.Name AS TeamName, Team.Id AS TeamId FROM Runner LEFT JOIN Team ON Team.Id=Runner.Team WHERE Runner.Id='.$RunnerId); 606 605 $DbRow = $DbResult->fetch_assoc(); 607 606 $Output .= '<div class="page-title">Runner '.$DbRow['Name'].'</div>'; 608 607 if ($DbRow['TeamName'] != '') 608 $Output .= '<div class="section-title"><a href="'.$this->Link('/team/'.$DbRow['TeamId']).'">'.$DbRow['TeamName'].'</a></div>'; 609 609 610 610 $Where = 'RunnerStat.Runner='.$RunnerId; -
trunk/style.css
r15 r21 72 72 font-weight: bold; 73 73 text-align: center; 74 padding-bottom: 10px;74 padding-bottom: 7px; 75 75 } 76 76 … … 79 79 font-weight: normal; 80 80 text-align: center; 81 padding-bottom: 7px; 81 82 } 82 83 … … 84 85 { 85 86 text-align: center; 86 padding-bottom: 10px;87 padding-bottom: 7px; 87 88 }
Note:
See TracChangeset
for help on using the changeset viewer.