Commit:    4ed88267847f833d21a90935ad4479ba1b113d93
Author:    Levi Morrison <[email protected]>         Fri, 20 Sep 2013 14:48:24 -0600
Parents:   27dc18ef18e4f3ebadc4f7d977435fb1ee08b178
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=4ed88267847f833d21a90935ad4479ba1b113d93

Log:
Fixed minor HTML validation error in vote uris.

Changed paths:
  M  include/shared-manual.inc


Diff:
diff --git a/include/shared-manual.inc b/include/shared-manual.inc
index b8632b9..1841f60 100644
--- a/include/shared-manual.inc
+++ b/include/shared-manual.inc
@@ -507,10 +507,10 @@ function manual_note_display($date, $name, $text, $id, 
$votes = array('up'=>0,'d
            $votediv = <<<VOTEDIV
   <div class="votes">
     <div id="Vu{$id}">
-    <a href="/manual/vote-note.php?id={$id}&page={$rredir_filename}&vote=up" 
title="Vote up!" class="usernotes-voteu">up</a>
+    <a 
href="/manual/vote-note.php?id={$id}&amp;page={$rredir_filename}&amp;vote=up" 
title="Vote up!" class="usernotes-voteu">up</a>
     </div>
     <div id="Vd{$id}">
-    <a href="/manual/vote-note.php?id={$id}&page={$rredir_filename}&vote=down" 
title="Vote down!" class="usernotes-voted">down</a>
+    <a 
href="/manual/vote-note.php?id={$id}&amp;page={$rredir_filename}&amp;vote=down" 
title="Vote down!" class="usernotes-voted">down</a>
     </div>
     <div class="tally" id="V{$id}" title="{$rate}">
     {$vote}


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to