Problem/Motivation

Anonymous users cannot see flagged items in a view.

Steps to reproduce

Create a global flag and add it to a content type.
Create a view listing the content type.
When an anonymous user flags 3 nodes on the view page, everything seams ok.
If user reloads the page, only one node seams to be flagged.

The cookie that holds all flagged items has the correct values,
however the js function Drupal.flagAnonymousLinkTemplates splits the cookie value by '+'.
It should be spited by ' ';

Attached patch solves the issue.