65LYrMtQquv6hyCl9vs2wu changeset

Changeset333261356135 (b)
ParentNone (a)
ab
0+            if ($article->metadata->published->getTimestamp() != $item->published->date->getTimestamp())
0+            {
0+                $article->metadata->published = $item->published->date;
0+                $update = true;
0+            }
0+
0+            if ($update)
0+            {
0+                if (!$article->guid)
0+                {
0+                    $article->create();
0+                    continue;
0+                }
0+                $article->update();
0+            }
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- Revision None
+++ Revision 333261356135
@@ -0,0 +1,15 @@
+ if ($article->metadata->published->getTimestamp() != $item->published->date->getTimestamp())
+ {
+ $article->metadata->published = $item->published->date;
+ $update = true;
+ }
+
+ if ($update)
+ {
+ if (!$article->guid)
+ {
+ $article->create();
+ continue;
+ }
+ $article->update();
+ }