Changeset 918


Ignore:
Timestamp:
Oct 30, 2005, 9:35:39 PM (18 years ago)
Author:
volcom
Message:

2005-10-30 volcom

  • bug 190 fixed: issue in stats.tpl display
  • bug fixed: labels of monthly, daily graph fixed
Location:
trunk
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/images/monthly_stats.img.php

    r775 r918  
    3434//------------------------------------------------ variable definition
    3535$outputFormat = "png";
    36 $legend = $lang['stats_global_graph_title'];
     36$legend = $lang['stats_monthly_graph_title'];
    3737$imageHeight = 256;
    3838$imageWidth = 512;
  • trunk/admin/stats.php

    r909 r918  
    3939if (isset($_GET['day']) && isset($_GET['month']) && isset($_GET['year']) )
    4040{
    41   $url_img .= 'dayly_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'];
    4242  $nls_value_title = $lang['w_day'];
    4343  $group_clause = "DATE_FORMAT(date,'%Y-%m-%d') ASC";
  • trunk/doc/ChangeLog

    r917 r918  
     12005-10-30 volcom
     2       
     3        * bug 190 fixed: issue in stats.tpl display
     4        * bug fixed: labels of monthly, daily graph fixed
     5
    162005-10-26 chrisaga
    27
  • trunk/language/en_UK.iso-8859-1/admin.lang.php

    r906 r918  
    263263$lang['singly represented'] = 'singly represented';
    264264$lang['stats_global_graph_title'] = 'Pages seen by month';
    265 $lang['stats_dayly_graph_title'] = 'Pages seen by hour';
     265$lang['stats_daily_graph_title'] = 'Pages seen by hour';
    266266$lang['stats_monthly_graph_title'] = 'Pages seen by day';
    267267$lang['stats_month_title'] = 'Monthly statistics';
  • trunk/language/fr_FR.iso-8859-1/admin.lang.php

    r906 r918  
    262262$lang['stats_global_graph_title'] = 'Pages vues par mois';
    263263$lang['stats_monthly_graph_title'] = 'Pages vues par jour';
    264 $lang['stats_dayly_graph_title'] = 'Pages vues par heure';
     264$lang['stats_daily_graph_title'] = 'Pages vues par heure';
    265265$lang['stats_month_title'] = 'Statistiques mensuelles';
    266266$lang['stats_day_title'] = 'Statistiques journalières';
  • trunk/template/yoga/admin/stats.tpl

    r894 r918  
    2121  </tr>
    2222<!-- END statrow -->
     23</table>
    2324
     25<h3>{L_DATE_TITLE}</h3>
    2426<table class="table2" width="98%">
    2527<tr class="throw">
    2628    <th>{L_STAT_HOUR}</th>
    27   <th>{L_STAT_LOGIN}</th>
     29    <th>{L_STAT_LOGIN}</th>
    2830    <th>{L_STAT_ADDR}</th>
    2931    <th>{L_STAT_CATEGORY}</th>
     
    3133    <th>{L_STAT_PICTURE}</th>
    3234</tr>
    33 <h3>{L_DATE_TITLE}</h3>
    3435<!-- BEGIN detail -->
    3536  <tr class="{detail.T_CLASS}">
     
    4243  </tr>
    4344<!-- END detail -->
     45</table>
    4446
    45 </table>
    46 <br />
     47
    4748<!-- BEGIN navigation -->
    48 <div  class="admin">
     49<div class="admin">
    4950{navigation.NAV_BAR}
    5051</div>
    5152<!-- END navigation -->
    52 <br />
    53 </table>
Note: See TracChangeset for help on using the changeset viewer.