From e658fb3a978e40653d72ef33549177c87cb714ce Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 27 Feb 2009 13:33:16 +0000 Subject: Closes #651: I agree, changed to convert both quotes. git-svn-id: https://code.elgg.org/elgg/trunk@2979 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/guidtool/views/default/forms/guidtool/export.php | 2 +- mod/profile/views/default/profile/icon.php | 4 ++-- views/default/input/access.php | 4 ++-- views/default/input/button.php | 2 +- views/default/input/checkboxes.php | 2 +- views/default/input/email.php | 2 +- views/default/input/hidden.php | 2 +- views/default/input/longtext.php | 2 +- views/default/input/password.php | 2 +- views/default/input/plaintext.php | 2 +- views/default/input/pulldown.php | 8 ++++---- views/default/input/radio.php | 2 +- views/default/input/tags.php | 2 +- views/default/input/text.php | 2 +- views/default/input/url.php | 2 +- views/default/messages/exceptions/exception.php | 2 +- views/default/output/calendar.php | 2 +- views/default/output/confirmlink.php | 2 +- views/default/output/email.php | 2 +- views/default/output/pulldown.php | 2 +- views/default/output/tagcloud.php | 2 +- views/default/output/tags.php | 2 +- views/default/output/text.php | 2 +- views/default/output/url.php | 2 +- views/failsafe/input/button.php | 2 +- views/failsafe/input/checkboxes.php | 2 +- views/failsafe/input/hidden.php | 2 +- views/failsafe/input/text.php | 2 +- views/failsafe/messages/exceptions/exception.php | 2 +- 29 files changed, 34 insertions(+), 34 deletions(-) diff --git a/mod/guidtool/views/default/forms/guidtool/export.php b/mod/guidtool/views/default/forms/guidtool/export.php index fca6fb152..e2a583d6d 100644 --- a/mod/guidtool/views/default/forms/guidtool/export.php +++ b/mod/guidtool/views/default/forms/guidtool/export.php @@ -19,5 +19,5 @@ ?>
- htmlentities(file_get_contents($CONFIG->url . "export/$format/$entity_guid/"), null, 'UTF-8'))) ?> + htmlentities(file_get_contents($CONFIG->url . "export/$format/$entity_guid/"), ENT_QUOTES, 'UTF-8'))) ?>
\ No newline at end of file diff --git a/mod/profile/views/default/profile/icon.php b/mod/profile/views/default/profile/icon.php index d6b82c831..ac278f7c1 100644 --- a/mod/profile/views/default/profile/icon.php +++ b/mod/profile/views/default/profile/icon.php @@ -19,7 +19,7 @@ if ($vars['entity'] instanceof ElggUser) { - $name = htmlentities($vars['entity']->name, null, 'UTF-8'); + $name = htmlentities($vars['entity']->name, ENT_QUOTES, 'UTF-8'); $username = $vars['entity']->username; if ($icontime = $vars['entity']->icontime) { @@ -77,7 +77,7 @@ } - ?> title="name, null, 'UTF-8'); ?>" /> title="name, ENT_QUOTES, 'UTF-8'); ?>" /> $option) { if ($key != $vars['value']) { - echo ""; + echo ""; } else { - echo ""; + echo ""; } } diff --git a/views/default/input/button.php b/views/default/input/button.php index 198f29dcf..72a1f653d 100644 --- a/views/default/input/button.php +++ b/views/default/input/button.php @@ -33,7 +33,7 @@ default: $type = 'submit'; } - $value = htmlentities($vars['value'], null, 'UTF-8'); + $value = htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); if (isset($vars['internalname'])) $name = $vars['internalname']; if (isset($vars['src'])) $src = $vars['src']; if (strpos($src,$CONFIG->wwwroot)===false) $src = ""; // blank src if trying to access an offsite image. diff --git a/views/default/input/checkboxes.php b/views/default/input/checkboxes.php index fefcecc2c..620ee9cbc 100644 --- a/views/default/input/checkboxes.php +++ b/views/default/input/checkboxes.php @@ -45,7 +45,7 @@ $disabled = ""; if ($vars['disabled']) $disabled = ' disabled="yes" '; - echo "
"; + echo "
"; } ?> \ No newline at end of file diff --git a/views/default/input/email.php b/views/default/input/email.php index 9c1f9920a..d9516fd2b 100644 --- a/views/default/input/email.php +++ b/views/default/input/email.php @@ -21,4 +21,4 @@ if (!$class) $class = "input-text"; ?> - name="" value="" class=""/> \ No newline at end of file + name="" value="" class=""/> \ No newline at end of file diff --git a/views/default/input/hidden.php b/views/default/input/hidden.php index 5d3015414..6fcd56e4a 100644 --- a/views/default/input/hidden.php +++ b/views/default/input/hidden.php @@ -17,4 +17,4 @@ * */ ?> - name="" value="" /> \ No newline at end of file + name="" value="" /> \ No newline at end of file diff --git a/views/default/input/longtext.php b/views/default/input/longtext.php index ef7cd0efb..b199ef2aa 100644 --- a/views/default/input/longtext.php +++ b/views/default/input/longtext.php @@ -22,4 +22,4 @@ ?> - \ No newline at end of file + \ No newline at end of file diff --git a/views/default/input/password.php b/views/default/input/password.php index e93864bce..ecc02c365 100644 --- a/views/default/input/password.php +++ b/views/default/input/password.php @@ -21,4 +21,4 @@ if (!$class) $class = "input-password"; ?> - name="" value="" class="" /> \ No newline at end of file + name="" value="" class="" /> \ No newline at end of file diff --git a/views/default/input/plaintext.php b/views/default/input/plaintext.php index 6b4fea344..a957940cf 100644 --- a/views/default/input/plaintext.php +++ b/views/default/input/plaintext.php @@ -22,4 +22,4 @@ ?> - \ No newline at end of file + \ No newline at end of file diff --git a/views/default/input/pulldown.php b/views/default/input/pulldown.php index 8d7d94e75..42a72259c 100644 --- a/views/default/input/pulldown.php +++ b/views/default/input/pulldown.php @@ -32,9 +32,9 @@ { foreach($vars['options_values'] as $value => $option) { if ($value != $vars['value']) { - echo ""; + echo ""; } else { - echo ""; + echo ""; } } } @@ -42,9 +42,9 @@ { foreach($vars['options'] as $option) { if ($option != $vars['value']) { - echo ""; + echo ""; } else { - echo ""; + echo ""; } } } diff --git a/views/default/input/radio.php b/views/default/input/radio.php index 8be62c752..6dfa3a7ae 100644 --- a/views/default/input/radio.php +++ b/views/default/input/radio.php @@ -33,7 +33,7 @@ } if ($vars['disabled']) $disabled = ' disabled="yes" '; - echo "
"; + echo "
"; } ?> \ No newline at end of file diff --git a/views/default/input/tags.php b/views/default/input/tags.php index c5d8454da..b3c69ae76 100644 --- a/views/default/input/tags.php +++ b/views/default/input/tags.php @@ -42,4 +42,4 @@ } ?> - name="" value="" class=""/> \ No newline at end of file + name="" value="" class=""/> \ No newline at end of file diff --git a/views/default/input/text.php b/views/default/input/text.php index 9f8ab79f7..94559afd6 100644 --- a/views/default/input/text.php +++ b/views/default/input/text.php @@ -24,4 +24,4 @@ ?> - name="" value="" class=""/> \ No newline at end of file + name="" value="" class=""/> \ No newline at end of file diff --git a/views/default/input/url.php b/views/default/input/url.php index 5de25f283..1bfe04fe4 100644 --- a/views/default/input/url.php +++ b/views/default/input/url.php @@ -21,4 +21,4 @@ if (!$class) $class = "input-url"; ?> - name="" value="" class=""/> \ No newline at end of file + name="" value="" class=""/> \ No newline at end of file diff --git a/views/default/messages/exceptions/exception.php b/views/default/messages/exceptions/exception.php index 2c9375bf1..5d1faac81 100644 --- a/views/default/messages/exceptions/exception.php +++ b/views/default/messages/exceptions/exception.php @@ -29,7 +29,7 @@ END; if ($CONFIG->debug) { - $details = autop(htmlentities(print_r($vars['object'], true), null, 'UTF-8')); + $details = autop(htmlentities(print_r($vars['object'], true), ENT_QUOTES, 'UTF-8')); $body .= <<< END

diff --git a/views/default/output/calendar.php b/views/default/output/calendar.php index e31290e6a..d08c05cef 100644 --- a/views/default/output/calendar.php +++ b/views/default/output/calendar.php @@ -18,7 +18,7 @@ if (is_int($vars['value'])) { echo date("F j, Y", $vars['value']); } else { - echo htmlentities($vars['value'], null, 'UTF-8'); + echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); } ?> \ No newline at end of file diff --git a/views/default/output/confirmlink.php b/views/default/output/confirmlink.php index 2ef3ad14b..a51e58af9 100644 --- a/views/default/output/confirmlink.php +++ b/views/default/output/confirmlink.php @@ -21,4 +21,4 @@ if (!$confirm) $confirm = elgg_echo('question:areyousure'); ?> - \ No newline at end of file + \ No newline at end of file diff --git a/views/default/output/email.php b/views/default/output/email.php index e6b406507..cad9a9348 100644 --- a/views/default/output/email.php +++ b/views/default/output/email.php @@ -16,6 +16,6 @@ */ if (!empty($vars['value'])) { - echo "". htmlentities($vars['value'], null, 'UTF-8') .""; + echo "". htmlentities($vars['value'], ENT_QUOTES, 'UTF-8') .""; } ?> \ No newline at end of file diff --git a/views/default/output/pulldown.php b/views/default/output/pulldown.php index 8b1173842..1045d19be 100644 --- a/views/default/output/pulldown.php +++ b/views/default/output/pulldown.php @@ -15,5 +15,5 @@ * */ - echo htmlentities($vars['value'], null, 'UTF-8'); //$vars['value']; + echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); //$vars['value']; ?> \ No newline at end of file diff --git a/views/default/output/tagcloud.php b/views/default/output/tagcloud.php index 43f7b80b0..463b25116 100644 --- a/views/default/output/tagcloud.php +++ b/views/default/output/tagcloud.php @@ -43,7 +43,7 @@ if (!empty($cloud)) $cloud .= ", "; $size = round((log($tag->total) / log($max)) * 100) + 30; if ($size < 60) $size = 60; - $cloud .= "tag)." ({$tag->total})\" style=\"text-decoration:none;\">" . htmlentities($tag->tag, null, 'UTF-8') . ""; + $cloud .= "tag)." ({$tag->total})\" style=\"text-decoration:none;\">" . htmlentities($tag->tag, ENT_QUOTES, 'UTF-8') . ""; } echo $cloud; diff --git a/views/default/output/tags.php b/views/default/output/tags.php index d3d9522bc..d437475f6 100644 --- a/views/default/output/tags.php +++ b/views/default/output/tags.php @@ -46,7 +46,7 @@ $type = ""; } if (is_string($tag)) { - $tagstr .= "" . htmlentities($tag, null, 'UTF-8') . ""; + $tagstr .= "" . htmlentities($tag, ENT_QUOTES, 'UTF-8') . ""; } } echo $tagstr; diff --git a/views/default/output/text.php b/views/default/output/text.php index db7a5ea90..f2911f26d 100644 --- a/views/default/output/text.php +++ b/views/default/output/text.php @@ -15,5 +15,5 @@ * */ - echo htmlentities($vars['value'], null, 'UTF-8'); // $vars['value']; + echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); // $vars['value']; ?> \ No newline at end of file diff --git a/views/default/output/url.php b/views/default/output/url.php index af4582fba..07b5622bf 100644 --- a/views/default/output/url.php +++ b/views/default/output/url.php @@ -20,7 +20,7 @@ if ((substr_count($val, "http://") == 0) && (substr_count($val, "https://") == 0)) { $val = "http://" . $val; } - echo "". htmlentities($val, null, 'UTF-8'). ""; + echo "". htmlentities($val, ENT_QUOTES, 'UTF-8'). ""; } ?> \ No newline at end of file diff --git a/views/failsafe/input/button.php b/views/failsafe/input/button.php index ac1bfe784..4d0da9b72 100644 --- a/views/failsafe/input/button.php +++ b/views/failsafe/input/button.php @@ -33,7 +33,7 @@ default: $type = 'submit'; } - $value = htmlentities($vars['value'], null, 'UTF-8'); + $value = htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); $name = $vars['internalname']; $src = $vars['src']; if (strpos($src,$CONFIG->wwwroot)===false) $src = ""; // blank src if trying to access an offsite image. diff --git a/views/failsafe/input/checkboxes.php b/views/failsafe/input/checkboxes.php index ccfa17982..a66b2a084 100644 --- a/views/failsafe/input/checkboxes.php +++ b/views/failsafe/input/checkboxes.php @@ -43,7 +43,7 @@ $disabled = ""; if ($vars['disabled']) $disabled = ' disabled="yes" '; - echo "
"; + echo "
"; } ?> \ No newline at end of file diff --git a/views/failsafe/input/hidden.php b/views/failsafe/input/hidden.php index 5d3015414..6fcd56e4a 100644 --- a/views/failsafe/input/hidden.php +++ b/views/failsafe/input/hidden.php @@ -17,4 +17,4 @@ * */ ?> - name="" value="" /> \ No newline at end of file + name="" value="" /> \ No newline at end of file diff --git a/views/failsafe/input/text.php b/views/failsafe/input/text.php index 9f8ab79f7..94559afd6 100644 --- a/views/failsafe/input/text.php +++ b/views/failsafe/input/text.php @@ -24,4 +24,4 @@ ?> - name="" value="" class=""/> \ No newline at end of file + name="" value="" class=""/> \ No newline at end of file diff --git a/views/failsafe/messages/exceptions/exception.php b/views/failsafe/messages/exceptions/exception.php index c36be0baa..91fe35928 100644 --- a/views/failsafe/messages/exceptions/exception.php +++ b/views/failsafe/messages/exceptions/exception.php @@ -32,7 +32,7 @@

-- cgit v1.2.3