]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Avoid double colon on Notice URI generation
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 18 Apr 2014 21:17:34 +0000 (23:17 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 18 Apr 2014 21:17:34 +0000 (23:17 +0200)
classes/Notice.php

index aadfc78cd06c790a765b814ae4f9bc258858b687..56be89fb125d29679d577809e292c198941b576f 100644 (file)
@@ -593,7 +593,7 @@ class Notice extends Managed_DataObject
             $changed = false;
 
             if (empty($uri)) {
-                $notice->uri = sprintf('%s:%s=%d:%s=%s',
+                $notice->uri = sprintf('%s%s=%d:%s=%s',
                                     TagURI::mint(),
                                     'noticeId', $notice->id,
                                     'objectType', $notice->get_object_type(true));