diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-01-10 11:03:55 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-01-10 11:03:55 +0400 |
| commit | 80715caeaa7cb2fb8636748baab9ecc50730f869 (patch) | |
| tree | f31611e8e02e695d8dc14a764b0b2d43843ce36c /plugins/af_explosm | |
| parent | 90e13f5b1d9f5a8c02addd730ce7e9074ef7370d (diff) | |
always mangle guid in af_ plugins
Diffstat (limited to 'plugins/af_explosm')
| -rw-r--r-- | plugins/af_explosm/init.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/af_explosm/init.php b/plugins/af_explosm/init.php index d3da260b1..cd6efb2ee 100644 --- a/plugins/af_explosm/init.php +++ b/plugins/af_explosm/init.php @@ -45,12 +45,10 @@ class Af_Explosm extends Plugin { if ($basenode) { $article["content"] = $doc->saveXML($basenode, LIBXML_NOEMPTYTAG); - - // we need to update guid with owner_uid because our local article is different from the one - // other users with this plugin disabled might get - $article["guid"] = "explosm,$owner_uid:" . $article["guid"]; } } + + $article["guid"] = "explosm,$owner_uid:" . $article["guid"]; } return $article; |