JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
use preg instead of ereg
[wfpl.git] / misc.php
index 528053c..de42d62 100644 (file)
--- a/misc.php
+++ b/misc.php
@@ -119,7 +119,7 @@ function this_year() {
 
 # return the number of the current month (1..12)
 function this_month() {
-       return ereg_replace('^0', '', strftime('%m'));
+       return preg_replace('|^0|', '', strftime('%m'));
 }
 
 # return today's date in yyyy-mm-dd format