This commit is contained in:
root 2006-08-14 15:08:04 +00:00
parent 29bec30b95
commit 50dd88ca33
2 changed files with 2 additions and 2 deletions

View file

@ -134,7 +134,7 @@
echo "<option value='$i'"; echo "<option value='$i'";
if($month == $i) if($month == $i)
echo " selected"; echo " selected";
echo ">".ucwords(recode("utf-8..html", strftime("%B", mktime(0,0,0,$i,1,date("Y")))))."</option>"; echo ">".ucwords(strftime("%B", mktime(0,0,0,$i,1,date("Y"))))."</option>";
} }
?> ?>
</select> </select>

View file

@ -42,7 +42,7 @@
echo "<option value='$i'"; echo "<option value='$i'";
if($_SESSION[lostpw][month] == $i) if($_SESSION[lostpw][month] == $i)
echo " selected"; echo " selected";
echo ">".ucwords(recode("utf-8..html", strftime("%B", mktime(0,0,0,$i,1,date("Y")))))."</option>"; echo ">".ucwords(strftime("%B", mktime(0,0,0,$i,1,date("Y"))))."</option>";
} }
?> ?>
</select> </select>