Skip to content

Commit fd565b7

Browse files
author
Andrew Kirkpatrick
committed
Merge branch 'Working-Branch-for-Q2-2015' of https://github.com/w3c/wcag into Working-Branch-for-Q2-2015
Conflicts: .gitignore
2 parents 1a450d9 + a51b9db commit fd565b7

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,11 @@ $RECYCLE.BIN/
187187
## Python
188188
#############
189189

190+
<<<<<<< HEAD
190191
*.py[co]
192+
=======
193+
*.py[cod]
194+
>>>>>>> a51b9db2d4ebd2968f49781325ba3e4741f0127f
191195

192196
# Packages
193197
*.egg

wcag20/sources/quickref-leadin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,4 +441,4 @@
441441
setcookie("confreqs", "N", time()+365*24*60*60, "/");
442442
}
443443

444-
?>
444+
?>

wcag20/sources/quickref.xslt

+14-14
Original file line numberDiff line numberDiff line change
@@ -1075,20 +1075,20 @@ if(stristr($uaString, "/TR/") || stristr($uaString, "WCAG20/WD-WCAG20")) {
10751075
10761076
// insert all of the relevant cookies as hidden fields to be submitted for restored settings
10771077
1078-
echo "<input type=\"hidden\" name=\"introopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["introopt"]) . "\" />";
1079-
echo "<input type=\"hidden\" name=\"cssopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["cssopt"]) . "\" />";
1080-
echo "<input type=\"hidden\" name=\"smilopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["smilopt"]) . "\" />";
1081-
echo "<input type=\"hidden\" name=\"scriptopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["scriptopt"]) . "\" />";
1082-
echo "<input type=\"hidden\" name=\"serversideopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["serversideopt"]) . "\" />";
1083-
echo "<input type=\"hidden\" name=\"flashopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["flashopt"]) . "\" />";
1084-
echo "<input type=\"hidden\" name=\"pdfopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["fpdfopt"]) . "\" />";
1085-
echo "<input type=\"hidden\" name=\"silverlightopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["silverlightopt"]) . "\" />";
1086-
echo "<input type=\"hidden\" name=\"ariaopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["ariaopt"]) . "\" />";
1087-
echo "<input type=\"hidden\" name=\"level1opt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["level1opt"]) . "\" />";
1088-
echo "<input type=\"hidden\" name=\"level2opt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["level2opt"]) . "\" />";
1089-
echo "<input type=\"hidden\" name=\"level3opt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["level3opt"]) . "\" />";
1090-
echo "<input type=\"hidden\" name=\"sufopt\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["sufopt"]) . "\" />";
1091-
echo "<input type=\"hidden\" name=\"confreqs\" value=\"" . htmlspecialchars($HTTP_COOKIE_VARS["confreqs"]) . "\" />";
1078+
echo "<input type=\"hidden\" name=\"introopt\" value=\"" . htmlspecialchars($_COOKIE["introopt"]) . "\" />";
1079+
echo "<input type=\"hidden\" name=\"cssopt\" value=\"" . htmlspecialchars($_COOKIE["cssopt"]) . "\" />";
1080+
echo "<input type=\"hidden\" name=\"smilopt\" value=\"" . htmlspecialchars($_COOKIE["smilopt"]) . "\" />";
1081+
echo "<input type=\"hidden\" name=\"scriptopt\" value=\"" . htmlspecialchars($_COOKIE["scriptopt"]) . "\" />";
1082+
echo "<input type=\"hidden\" name=\"serversideopt\" value=\"" . htmlspecialchars($_COOKIE["serversideopt"]) . "\" />";
1083+
echo "<input type=\"hidden\" name=\"flashopt\" value=\"" . htmlspecialchars($_COOKIE["flashopt"]) . "\" />";
1084+
echo "<input type=\"hidden\" name=\"pdfopt\" value=\"" . htmlspecialchars($_COOKIE["fpdfopt"]) . "\" />";
1085+
echo "<input type=\"hidden\" name=\"silverlightopt\" value=\"" . htmlspecialchars($_COOKIE["silverlightopt"]) . "\" />";
1086+
echo "<input type=\"hidden\" name=\"ariaopt\" value=\"" . htmlspecialchars($_COOKIE["ariaopt"]) . "\" />";
1087+
echo "<input type=\"hidden\" name=\"level1opt\" value=\"" . htmlspecialchars($_COOKIE["level1opt"]) . "\" />";
1088+
echo "<input type=\"hidden\" name=\"level2opt\" value=\"" . htmlspecialchars($_COOKIE["level2opt"]) . "\" />";
1089+
echo "<input type=\"hidden\" name=\"level3opt\" value=\"" . htmlspecialchars($_COOKIE["level3opt"]) . "\" />";
1090+
echo "<input type=\"hidden\" name=\"sufopt\" value=\"" . htmlspecialchars($_COOKIE["sufopt"]) . "\" />";
1091+
echo "<input type=\"hidden\" name=\"confreqs\" value=\"" . htmlspecialchars($_COOKIE["confreqs"]) . "\" />";
10921092
echo "<input type=\"hidden\" name=\"savesettings\" value=\"Y\" />";
10931093
// echo "<p class=\"submitAsCT\"><input type=\"hidden\" value=\"Y\" name=\"AsCT\"/><input type=\"submit\" value=\"Customize with Previously Saved Settings\" class=\"submitLink\"/></p>";
10941094
]]></xsl:processing-instruction>

0 commit comments

Comments
 (0)