diff options
Diffstat (limited to 'lib/activity.php')
-rw-r--r-- | lib/activity.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/activity.php b/lib/activity.php index 5d6230c6d..365bb6258 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -117,7 +117,8 @@ class Activity // Insist on a feed's root DOMElement; don't allow a DOMDocument if ($feed instanceof DOMDocument) { throw new ClientException( - _("Expecting a root feed element but got a whole XML document.") + // TRANS: Client exception thrown when a feed instance is a DOMDocument. + _('Expecting a root feed element but got a whole XML document.') ); } |