Paul Lesniewski wrote:
> 
> If you just want to paste in the new
> php_self() function in functions/strings.php, here it is:
> 
> function php_self () {
>     if (sqgetGlobalVar('PHP_SELF', $php_self, SQ_SERVER)
>      && !empty($php_self)) {
>         if (sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER)
>          && !empty($query_string)) {
>             $php_self .= '?' . $query_string;
>         }
>         return $php_self;
>     }
>     else if (sqgetGlobalVar('REQUEST_URI', $req_uri, SQ_SERVER)
>           && !empty($req_uri)) {
>         if (strpos($req_uri, '?') === FALSE
>          && sqgetGlobalVar('QUERY_STRING', $query_string, SQ_SERVER)
>          && !empty($query_string)) {
>             $req_uri .= '?' . $query_string;
>         }
>         return $req_uri;
>     }
>     return '';
> }
> -- 
> Paul Lesniewski
> 

bravo, my brothers!  that seems to have fixed everything.  

-- 
View this message in context: 
http://old.nabble.com/404-after-sending-mail-tp13112479p27249586.html
Sent from the squirrelmail-users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
-----
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to