- Timestamp:
- Oct 30, 2005, 9:35:39 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/images/monthly_stats.img.php
r775 r918 34 34 //------------------------------------------------ variable definition 35 35 $outputFormat = "png"; 36 $legend = $lang['stats_ global_graph_title'];36 $legend = $lang['stats_monthly_graph_title']; 37 37 $imageHeight = 256; 38 38 $imageWidth = 512; -
trunk/admin/stats.php
r909 r918 39 39 if (isset($_GET['day']) && isset($_GET['month']) && isset($_GET['year']) ) 40 40 { 41 $url_img .= 'da yly_stats.img.php?year='.$_GET['year'].'&month='.$_GET['month'].'&day='.$_GET['day'];41 $url_img .= 'daily_stats.img.php?year='.$_GET['year'].'&month='.$_GET['month'].'&day='.$_GET['day']; 42 42 $nls_value_title = $lang['w_day']; 43 43 $group_clause = "DATE_FORMAT(date,'%Y-%m-%d') ASC"; -
trunk/doc/ChangeLog
r917 r918 1 2005-10-30 volcom 2 3 * bug 190 fixed: issue in stats.tpl display 4 * bug fixed: labels of monthly, daily graph fixed 5 1 6 2005-10-26 chrisaga 2 7 -
trunk/language/en_UK.iso-8859-1/admin.lang.php
r906 r918 263 263 $lang['singly represented'] = 'singly represented'; 264 264 $lang['stats_global_graph_title'] = 'Pages seen by month'; 265 $lang['stats_da yly_graph_title'] = 'Pages seen by hour';265 $lang['stats_daily_graph_title'] = 'Pages seen by hour'; 266 266 $lang['stats_monthly_graph_title'] = 'Pages seen by day'; 267 267 $lang['stats_month_title'] = 'Monthly statistics'; -
trunk/language/fr_FR.iso-8859-1/admin.lang.php
r906 r918 262 262 $lang['stats_global_graph_title'] = 'Pages vues par mois'; 263 263 $lang['stats_monthly_graph_title'] = 'Pages vues par jour'; 264 $lang['stats_da yly_graph_title'] = 'Pages vues par heure';264 $lang['stats_daily_graph_title'] = 'Pages vues par heure'; 265 265 $lang['stats_month_title'] = 'Statistiques mensuelles'; 266 266 $lang['stats_day_title'] = 'Statistiques journalières'; -
trunk/template/yoga/admin/stats.tpl
r894 r918 21 21 </tr> 22 22 <!-- END statrow --> 23 </table> 23 24 25 <h3>{L_DATE_TITLE}</h3> 24 26 <table class="table2" width="98%"> 25 27 <tr class="throw"> 26 28 <th>{L_STAT_HOUR}</th> 27 <th>{L_STAT_LOGIN}</th>29 <th>{L_STAT_LOGIN}</th> 28 30 <th>{L_STAT_ADDR}</th> 29 31 <th>{L_STAT_CATEGORY}</th> … … 31 33 <th>{L_STAT_PICTURE}</th> 32 34 </tr> 33 <h3>{L_DATE_TITLE}</h3>34 35 <!-- BEGIN detail --> 35 36 <tr class="{detail.T_CLASS}"> … … 42 43 </tr> 43 44 <!-- END detail --> 45 </table> 44 46 45 </table> 46 <br /> 47 47 48 <!-- BEGIN navigation --> 48 <div 49 <div class="admin"> 49 50 {navigation.NAV_BAR} 50 51 </div> 51 52 <!-- END navigation --> 52 <br />53 </table>
Note: See TracChangeset
for help on using the changeset viewer.