Changeset 690159
- Timestamp:
- 04/01/2013 04:15:58 PM (13 years ago)
- Location:
- ttlive/trunk
- Files:
-
- 2 edited
-
index.php (modified) (5 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ttlive/trunk/index.php
r690149 r690159 4 4 Plugin URI: http://www.svbb-tischtennis.de/ 5 5 Description: A simple wordpress plugin to get the data from the ttlive-system and show it on my wp-post or wp-page 6 Version: 0.8. 36 Version: 0.8.4 7 7 Author: finalan 8 8 Author URI: http://www.svbb-tischtennis.de … … 406 406 } 407 407 $plan .= "<table class='" . $tableclassname . "'>\n"; 408 $plan .= "<tr><th></th><th style='text-align:center'>Datum</th>\n";409 $plan .= "<th style='text-align:center'>Zeit</th>\n";408 $plan .= "<tr><th></th><th>Datum</th>\n"; 409 $plan .= "<th>Zeit</th>\n"; 410 410 $plan .= "<th style='text-align:left'>Staffel</th>\n"; 411 411 $plan .= "<th style='text-align:right'>Heimteam</th>\n"; … … 414 414 if ($params['display_type']==0) 415 415 { 416 $plan .= "<th style='text-align:center'>Erg.</th>\n";416 $plan .= "<th>Erg.</th>\n"; 417 417 } 418 418 $plan .= "</tr>\n"; … … 447 447 $plan .= " class='odd'>"; 448 448 } 449 $plan .= '<td>'.$marker.$attribute->Tag.'</td><td>'.$thedate->format('d.m. Y').'</td>'."\n";449 $plan .= '<td>'.$marker.$attribute->Tag.'</td><td>'.$thedate->format('d.m.').'</td>'."\n"; 450 450 $plan .= "<td>$time</td>\n"; 451 451 $staffel = explode(", ", $attribute->Staffelname); … … 453 453 $replace = array("BK", "BL", "KL", "KK", "LL", "N", "S", "O", "W", "M"); 454 454 $newstaffel = str_replace($search, $replace, $staffel[1]); 455 if ($staffel[0] == "Pokal Herren"):456 $newstaffel = "Pokal He";455 if ($staffel[0] == $attribute->Staffelname): 456 $newstaffel = $attribute->Staffelname; 457 457 endif; 458 458 $plan .= "<td>".$newstaffel."</td>\n"; -
ttlive/trunk/readme.txt
r690149 r690159 80 80 == Changelog == 81 81 82 = 0.8.4 = 83 * bugfix: if search&replace is not replacing anything in the league-name, then the full league-name is been displayed 84 82 85 = 0.8.3 = 83 * added sorting for last matches (14 Tage), to show the max number of matches by date86 * added sorting for last matches, to show the max number of matches by date 84 87 85 88 = 0.8.1 =
Note: See TracChangeset
for help on using the changeset viewer.