aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-10-13 12:21:27 +1100
committerGitHub <noreply@github.com>2016-10-13 12:21:27 +1100
commit513b8959f5a73509972a1b26fd105a8a610337f8 (patch)
tree3047c494eb5604105ac20d3e896f4f2e957a4b5f /include
parent8a00b62cbab22fb46828d2dc13e4b6f317a08f98 (diff)
parentd5cd6f9a5137f53b8a50c81bbd4f4838c0707db1 (diff)
downloadvolse-hubzilla-513b8959f5a73509972a1b26fd105a8a610337f8.tar.gz
volse-hubzilla-513b8959f5a73509972a1b26fd105a8a610337f8.tar.bz2
volse-hubzilla-513b8959f5a73509972a1b26fd105a8a610337f8.zip
Merge pull request #545 from dawnbreak/atfix
Comment and code about UTF-8 @-sign do not match.
Diffstat (limited to 'include')
-rw-r--r--include/attach.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/attach.php b/include/attach.php
index b5c334d3e..e81a943c6 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -1948,9 +1948,9 @@ function get_attach_binname($s) {
function get_dirpath_by_cloudpath($channel, $path) {
-
- // Warning: Do not edit the following line. The first symbol is UTF-8 &#65312;
- $path = str_replace('@','@',notags(trim($path)));
+
+ // Warning: Do not edit the following line. The first symbol is UTF-8 (U+FF20) &#65312;
+ $path = str_replace('@', '@', notags(trim($path)));
$h = @parse_url($path);