[prev in list] [next in list] [prev in thread] [next in thread] 

List:       squirrelmail-cvs
Subject:    [SM-CVS] SF.net SVN: squirrelmail:[14791] branches/SM-1_4-STABLE/squirrelmail
From:       pdontthink--- via squirrelmail-cvs <squirrelmail-cvs () lists ! sourceforge ! net>
Date:       2018-10-13 22:55:30
Message-ID: 1539471330.428362.18283 () sfp-scm-5 ! v30 ! lw ! sourceforge ! com
[Download RAW message or body]

Revision: 14791
          http://sourceforge.net/p/squirrelmail/code/14791
Author:   pdontthink
Date:     2018-10-13 22:55:29 +0000 (Sat, 13 Oct 2018)
Log Message:
-----------
Make sure link tags are proper XHTML

Modified Paths:
--------------
    branches/SM-1_4-STABLE/squirrelmail/functions/page_header.php
    branches/SM-1_4-STABLE/squirrelmail/src/addrbook_popup.php
    branches/SM-1_4-STABLE/squirrelmail/src/signout.php
    branches/SM-1_4-STABLE/squirrelmail/src/webmail.php

Modified: branches/SM-1_4-STABLE/squirrelmail/functions/page_header.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/functions/page_header.php	2018-10-13 15:40:11 \
                UTC (rev 14790)
+++ branches/SM-1_4-STABLE/squirrelmail/functions/page_header.php	2018-10-13 22:55:29 \
UTC (rev 14791) @@ -83,9 +83,9 @@
     // When not defined, a default is provided that displays the default \
                favicon.ico.
     // If you override this and still want to use the default favicon.ico, you'll \
have to include the following  // following in your $head_tag_extra string:
-    // $head_tag_extra = '<link rel="shortcut icon" href="###SM \
BASEURI###favicon.ico">...<YOUR CONTENT HERE>...'; +    // $head_tag_extra = '<link \
rel="shortcut icon" href="###SM BASEURI###favicon.ico" />...<YOUR CONTENT HERE>...';  \
                //
-       . (empty($head_tag_extra) ? '<link rel="shortcut icon" href="' . \
sqm_baseuri() . 'favicon.ico">' +       . (empty($head_tag_extra) ? '<link \
rel="shortcut icon" href="' . sqm_baseuri() . 'favicon.ico" />'  : str_replace('###SM \
BASEURI###', sqm_baseuri(), $head_tag_extra))  
     // prevent clickjack attempts using JavaScript for browsers that

Modified: branches/SM-1_4-STABLE/squirrelmail/src/addrbook_popup.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/src/addrbook_popup.php	2018-10-13 15:40:11 \
                UTC (rev 14790)
+++ branches/SM-1_4-STABLE/squirrelmail/src/addrbook_popup.php	2018-10-13 22:55:29 \
UTC (rev 14791) @@ -37,10 +37,10 @@
     // When not defined, a default is provided that displays the default \
                favicon.ico.
     // If you override this and still want to use the default favicon.ico, you'll \
have to include the following  // following in your $head_tag_extra string:
-    // $head_tag_extra = '<link rel="shortcut icon" href="###SM \
BASEURI###favicon.ico">...<YOUR CONTENT HERE>...'; +    // $head_tag_extra = '<link \
rel="shortcut icon" href="###SM BASEURI###favicon.ico" />...<YOUR CONTENT HERE>...';  \
//  global $head_tag_extra;
-    echo (empty($head_tag_extra) ? '<link rel="shortcut icon" href="' . \
sqm_baseuri() . 'favicon.ico">' +    echo (empty($head_tag_extra) ? '<link \
                rel="shortcut icon" href="' . sqm_baseuri() . 'favicon.ico" />'
        : str_replace('###SM BASEURI###', sqm_baseuri(), $head_tag_extra));
 ?>
         <meta name="robots" content="noindex,nofollow">

Modified: branches/SM-1_4-STABLE/squirrelmail/src/signout.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/src/signout.php	2018-10-13 15:40:11 UTC (rev \
                14790)
+++ branches/SM-1_4-STABLE/squirrelmail/src/signout.php	2018-10-13 22:55:29 UTC (rev \
14791) @@ -69,10 +69,10 @@
     // When not defined, a default is provided that displays the default \
                favicon.ico.
     // If you override this and still want to use the default favicon.ico, you'll \
have to include the following  // following in your $head_tag_extra string:
-    // $head_tag_extra = '<link rel="shortcut icon" href="###SM \
BASEURI###favicon.ico">...<YOUR CONTENT HERE>...'; +    // $head_tag_extra = '<link \
rel="shortcut icon" href="###SM BASEURI###favicon.ico" />...<YOUR CONTENT HERE>...';  \
//  global $head_tag_extra;
-    echo (empty($head_tag_extra) ? '<link rel="shortcut icon" href="' . \
sqm_baseuri() . 'favicon.ico">' +    echo (empty($head_tag_extra) ? '<link \
                rel="shortcut icon" href="' . sqm_baseuri() . 'favicon.ico" />'
        : str_replace('###SM BASEURI###', sqm_baseuri(), $head_tag_extra));
 
     if ($theme_css != '') {

Modified: branches/SM-1_4-STABLE/squirrelmail/src/webmail.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/src/webmail.php	2018-10-13 15:40:11 UTC (rev \
                14790)
+++ branches/SM-1_4-STABLE/squirrelmail/src/webmail.php	2018-10-13 22:55:29 UTC (rev \
14791) @@ -84,9 +84,9 @@
           // When not defined, a default is provided that displays the default \
                favicon.ico.
           // If you override this and still want to use the default favicon.ico, \
you'll have to include the following  // following in your $head_tag_extra string:
-          // $head_tag_extra = '<link rel="shortcut icon" href="###SM \
BASEURI###favicon.ico">...<YOUR CONTENT HERE>...'; +          // $head_tag_extra = \
'<link rel="shortcut icon" href="###SM BASEURI###favicon.ico" />...<YOUR CONTENT \
HERE>...';  //
-          . (empty($head_tag_extra) ? '<link rel="shortcut icon" href="' . \
sqm_baseuri() . 'favicon.ico">' +          . (empty($head_tag_extra) ? '<link \
                rel="shortcut icon" href="' . sqm_baseuri() . 'favicon.ico" />'
           : str_replace('###SM BASEURI###', sqm_baseuri(), $head_tag_extra))
 
           // prevent clickjack attempts using JavaScript for browsers that

This was sent by the SourceForge.net collaborative development platform, the world's \
largest Open Source development site.



-----
squirrelmail-cvs mailing list
List address: squirrelmail-cvs@lists.sourceforge.net
List info (subscribe/unsubscribe/change options): \
                https://lists.sourceforge.net/lists/listinfo/squirrelmail-cvs
Repository: http://squirrelmail.org/svn


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic