[geeklog-cvs] Geeklog-1.x/public_html lib-common.php,1.688,1.689

Dirk Haun dhaun at qs1489.pair.com
Fri Mar 21 08:49:15 EDT 2008


Update of /cvsroot/geeklog/Geeklog-1.x/public_html
In directory qs1489.pair.com:/tmp/cvs-serv37533/public_html

Modified Files:
	lib-common.php 
Log Message:
Fixed weird function description ...


Index: lib-common.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/lib-common.php,v
retrieving revision 1.688
retrieving revision 1.689
diff -C2 -d -r1.688 -r1.689
*** lib-common.php	16 Mar 2008 21:01:49 -0000	1.688
--- lib-common.php	21 Mar 2008 12:49:13 -0000	1.689
***************
*** 2790,2802 ****
  * Redirects user to a given URL
  *
! * This function COM_passes a meta tag to COM_refresh after a form is sent.  This is
! * necessary because for some reason Nutscrape and PHP4 don't play well with
! * the header() function COM_100% of the time.
  *
  * @param        string      $url        URL to send user to
  *
  */
! 
! function COM_refresh( $url )
  {
      return "<html><head><meta http-equiv=\"refresh\" content=\"0; URL=$url\"" . XHTML . "></head></html>\n";
--- 2790,2800 ----
  * Redirects user to a given URL
  *
! * This function does a redirect using a meta refresh. This is (or at least
! * used to be) more compatible than using a HTTP Location: header.
  *
  * @param        string      $url        URL to send user to
  *
  */
! function COM_refresh($url)
  {
      return "<html><head><meta http-equiv=\"refresh\" content=\"0; URL=$url\"" . XHTML . "></head></html>\n";




More information about the geeklog-cvs mailing list