diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-13 12:21:27 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 12:21:27 +1100 |
commit | 513b8959f5a73509972a1b26fd105a8a610337f8 (patch) | |
tree | 3047c494eb5604105ac20d3e896f4f2e957a4b5f /include | |
parent | 8a00b62cbab22fb46828d2dc13e4b6f317a08f98 (diff) | |
parent | d5cd6f9a5137f53b8a50c81bbd4f4838c0707db1 (diff) | |
download | volse-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.php | 6 |
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 @ - $path = str_replace('@','@',notags(trim($path))); + + // Warning: Do not edit the following line. The first symbol is UTF-8 (U+FF20) @ + $path = str_replace('@', '@', notags(trim($path))); $h = @parse_url($path); |