If I use the Jump To... to jump to a future month, there's
no easy way to jump back to the current month. Would
you consider adding the current month to the Jump To...
list?
As an alternate method to dschulte's code change comment,
you can always click the Today is: link and then click the
Month tab. This 2-click method is the same number of clicks
as clicking on the Jump to... drop-down and then clicking on
the current month with the code change from dschulte.
Just another option.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Not to beat this into the ground, but the html in the above
responses is apparently getting hidden or dropped. The fix:
Copy line 382 of main.php & paste it above line 375.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=1034521
I just added:
echo ' <option value="',$y,'-',str_pad($m, 2, "0",
STR_PAD_LEFT),'-01 00:00:00">',Month_to_Text($m),' ',$y,'</option>',"\n";
to line 375 of main.php. Seemed to do what you're asking.
Logged In: YES
user_id=1385785
As an alternate method to dschulte's code change comment,
you can always click the Today is: link and then click the
Month tab. This 2-click method is the same number of clicks
as clicking on the Jump to... drop-down and then clicking on
the current month with the code change from dschulte.
Just another option.
Logged In: YES
user_id=1443411
This will fix this issue. Just made the changes to the
indicated file.
--Start fix--
File: main.php
Start Line: 374
Change: Add current month to “Jump to” list
$m = $today['month'];
$y = $today['year'];
echo ' <option value="',$y,'-',str_pad($m, 2, "0",
STR_PAD_LEFT),'-01 00:00:00">',Month_to_Text($m),'
',$y,'</option>',"\n";
--End Fix--
Logged In: YES
user_id=638347
Not to beat this into the ground, but the html in the above
responses is apparently getting hidden or dropped. The fix:
Copy line 382 of main.php & paste it above line 375.