From 6c27f346217f7b4b8b24064371f2461cf57c6167 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Mon, 17 Sep 2007 23:05:30 -0400 Subject: [PATCH] fixed file_run to use _main postfix, added enc_url_path(), enc_ddmmyyyhhmm(), allowed : in subjects --- email.php | 2 +- encode.php | 21 +++++++++++++++++++++ file_run.php | 4 ++-- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/email.php b/email.php index 8140ded..b3d4925 100644 --- a/email.php +++ b/email.php @@ -44,7 +44,7 @@ function email($from, $to, $subject, $message, $cc = '', $bcc = '') { if($to == '') { return 2; } #FIXME should allow many more characters here - $subject = ereg_replace("[^a-zA-Z _'.-]", '_', $subject); + $subject = ereg_replace("[^a-zA-Z _'.:-]", '_', $subject); $headers = "From: $from"; if($cc) { diff --git a/encode.php b/encode.php index 3f4119c..123fcc9 100644 --- a/encode.php +++ b/encode.php @@ -50,6 +50,15 @@ function enc_html($str) { return $str; } +# Encode for output in html. converts \n to
+# +# Example:

~foo.html~

+function enc_htmlbr($str) { + $str = enc_html($str); + $str = str_replace("\n", "
\n", $str); + return $str; +} + # HTML attribute. # @@ -67,6 +76,14 @@ function enc_url_val($str) { return rawurlencode($str); } +# FIXME +function enc_url_path($str) { + $str = rawurlencode($str); + $str = str_replace('%2F', '/', $str); + return $str; +} + + # This is a hack to work around html's stupid syntax for checkboxes. # # Place the template marker just before a " somewhere. @@ -99,6 +116,10 @@ function enc_upper($str) { return strtoupper($str); } +function enc_ddmmyyyyhhmm($seconds) { + return date('m/d/Y g:ia', (int)$seconds); +} + # display