This is a minor Bugfix for combobox order.
In index.php, code below must be replaced
Code:
$current = $year.$month;
$awprev[$current] = $year."-".$month;
by this one (just add the four lines of the "if" betweeb both lines to fix order)
Code:
$current = $year.$month;
if ( $month < 10 )
{
$current = $year."0".$month;
}
$awprev[$current] = $year."-".$month;
Main thread has been updated. If latest ispconfig version or svn doesn't have this lines, bug if present there too. Could some one check this on svn? I am working with 3.0.3.3, I didn't updated yet.
Thanks
edit: Couln't edit main post =/, Till, could you updated it? thanks!
Recent comments
17 hours 19 min ago
1 day 2 hours ago
1 day 3 hours ago
1 day 7 hours ago
1 day 11 hours ago
1 day 11 hours ago
1 day 14 hours ago
2 days 7 min ago
2 days 5 hours ago
2 days 6 hours ago