Switching project access information to use JSON instead of serialization, fixes #493

This commit is contained in:
Dan Cryer 2014-07-30 15:13:50 +01:00
commit 2875badb0a
3 changed files with 19 additions and 4 deletions

View file

@ -112,8 +112,7 @@ class ProjectService
$info['user'] = $matches[1];
$info['domain'] = $matches[2];
/** @todo At a later date, we need to find a way to replace this serialized data with JSON */
$project->setAccessInformation(serialize($info));
$project->setAccessInformation($info);
$project->setReference($matches[3] . '/' . $matches[4]);
}
}