Skip to content
Snippets Groups Projects
Commit e1fa15f3 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#2002 - AWStats minor bug

parent 2adce785
No related branches found
No related tags found
No related merge requests found
......@@ -39,9 +39,12 @@ if ($handle = opendir('.'))
}
$current = $year.$month;
$awprev[$current] = $year."-".$month;
if ( $month < 10 ) {
$current = $year."0".$month;
}
$awprev[$current] = $year."-".$month;
closedir($handle);
closedir($handle);
}
echo '<div style="width: 97%; margin-left: 4px; height: 20px; background-color: #FFFFFF; position: fixed; padding: 7px; border: 2px solid #cccccc;><div align="left"><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">' .$aw["aw_jump_text"]. '</font </div>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment