diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/elements/tr-select-from_to.html | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/elements/tr-select-from_to.html')
-rw-r--r-- | httemplate/elements/tr-select-from_to.html | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/httemplate/elements/tr-select-from_to.html b/httemplate/elements/tr-select-from_to.html deleted file mode 100644 index 083243d40..000000000 --- a/httemplate/elements/tr-select-from_to.html +++ /dev/null @@ -1,52 +0,0 @@ -% -% -% #my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); -% my ($curmon,$curyear) = (localtime(time))[4,5]; -% -% #find first month -% my $syear = 1899+$curyear; -% my $smonth = $curmon+1; -% -% #want 12 month by default, not 13 -% $smonth++; -% if ( $smonth > 12 ) { $smonth-=12; $syear++ } -% -% #find last month -% my $eyear = 1900+$curyear; -% my $emonth = $curmon+1; -% -% my %hash = ( -% 'show_month_abbr' => 1, -% 'start_year' => '1999', -% 'end_year' => '2012', #haha, well... -% @_, -% ); -% -% - - -<TR> - <TD ALIGN="right">From: </TD> - <TD> - <% include('/elements/select-month_year.html', - 'prefix' => 'start', - 'selected_mon' => $smonth, - 'selected_year' => $syear, - %hash, - ) - %> - </TD> -</TR> - -<TR> - <TD ALIGN="right">To: </TD> - <TD> - <% include('/elements/select-month_year.html', - 'prefix' => 'end', - 'selected_mon' => $emonth, - 'selected_year' => $eyear, - %hash, - ) - %> - </TD> -</TR> |