Skip to content

Commit

Permalink
Fixed issue #6425: Misalignment for date filter at statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Aug 12, 2012
1 parent ff64aa0 commit da529f0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions application/views/admin/export/statistics_view.php
Expand Up @@ -96,13 +96,14 @@
if (isset($datestamp) && $datestamp == "Y") {
echo "<fieldset id='right'><legend>".$clang->gT("Submission date")."</legend><ul><li>"
."<label for='datestampE'>".$clang->gT("Equals:")."</label>\n"
."<input class='popupdate' id='datestampE' name='datestampE' type='text' value='";
."<input class='popupdate' size='12' id='datestampE' name='datestampE' type='text' value='";
if (isset($_POST['datestampE'])) { echo $_POST['datestampE']; }
echo "' /></li><li><label for='datestampG'>\n"
."&nbsp;&nbsp;".$clang->gT("Later than:")."</label>\n"
."<input class='popupdatetime' id='datestampG' name='datestampG' value='";
."<input class='popupdatetime' size='12' id='datestampG' name='datestampG' value='";
if (isset($_POST['datestampG'])) { echo $_POST['datestampG']; }
echo "' type='text' /></li><li><label for='datestampL'> ".$clang->gT("Earlier than:")."</label><input class='popupdatetime' id='datestampL' name='datestampL' value='";
echo "' type='text' /></li><li><label for='datestampL'> ".$clang->gT("Earlier than:")."</label>
<input class='popupdatetime' size='12' id='datestampL' name='datestampL' value='";
if (isset($_POST['datestampL'])) { echo $_POST['datestampL']; }
echo "' type='text' /></li></ul></fieldset>\n";
echo "<input type='hidden' name='summary[]' value='datestampE' />";
Expand Down

0 comments on commit da529f0

Please sign in to comment.