]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Better whitespace handling in tags. Fixes #571
authorChris Kuethe <chris.kuethe@gmail.com>
Thu, 19 May 2016 18:33:45 +0000 (11:33 -0700)
committerArthurHoaro <arthur@hoa.ro>
Tue, 2 Aug 2016 08:22:18 +0000 (10:22 +0200)
application/LinkDB.php

index 929a6b0f1cec3c5eda346e008c02d74df531c438..e9d216ea649dcb7c16354616c8849038ddc7889d 100644 (file)
@@ -291,7 +291,7 @@ You use the community supported version of the original Shaarli project, by Seba
 
             // Remove private tags if the user is not logged in.
             if (! $this->_loggedIn) {
-                $link['tags'] = preg_replace('/(^| )\.[^($| )]+/', '', $link['tags']);
+                $link['tags'] = preg_replace('/(^|\s*)\.[^($| )]+\s*$/', '', $link['tags']);
             }
 
             // Do not use the redirector for internal links (Shaarli note URL starting with a '?').
@@ -442,7 +442,7 @@ You use the community supported version of the original Shaarli project, by Seba
         $tags = array();
         $caseMapping = array();
         foreach ($this->_links as $link) {
-            foreach (explode(' ', $link['tags']) as $tag) {
+            foreach (preg_split('/\s+/', $link['tags'], 0, PREG_SPLIT_NO_EMPTY) as $tag) {
                 if (empty($tag)) {
                     continue;
                 }