diff options
Diffstat (limited to 'tests/utils/ReferenceLinkDB.php')
-rw-r--r-- | tests/utils/ReferenceLinkDB.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/utils/ReferenceLinkDB.php b/tests/utils/ReferenceLinkDB.php index fcc7a4f9..937961c8 100644 --- a/tests/utils/ReferenceLinkDB.php +++ b/tests/utils/ReferenceLinkDB.php | |||
@@ -30,7 +30,8 @@ class ReferenceLinkDB | |||
30 | 'Richard Stallman and the Free Software Revolution. Read this. #hashtag', | 30 | 'Richard Stallman and the Free Software Revolution. Read this. #hashtag', |
31 | 0, | 31 | 0, |
32 | '20150310_114633', | 32 | '20150310_114633', |
33 | 'free gnu software stallman -exclude stuff hashtag' | 33 | 'free gnu software stallman -exclude stuff hashtag', |
34 | '20160803_093033' | ||
34 | ); | 35 | ); |
35 | 36 | ||
36 | $this->addLink( | 37 | $this->addLink( |
@@ -82,7 +83,7 @@ class ReferenceLinkDB | |||
82 | /** | 83 | /** |
83 | * Adds a new link | 84 | * Adds a new link |
84 | */ | 85 | */ |
85 | protected function addLink($title, $url, $description, $private, $date, $tags) | 86 | protected function addLink($title, $url, $description, $private, $date, $tags, $updated = '') |
86 | { | 87 | { |
87 | $link = array( | 88 | $link = array( |
88 | 'title' => $title, | 89 | 'title' => $title, |
@@ -91,6 +92,7 @@ class ReferenceLinkDB | |||
91 | 'private' => $private, | 92 | 'private' => $private, |
92 | 'linkdate' => $date, | 93 | 'linkdate' => $date, |
93 | 'tags' => $tags, | 94 | 'tags' => $tags, |
95 | 'updated' => $updated, | ||
94 | ); | 96 | ); |
95 | $this->_links[$date] = $link; | 97 | $this->_links[$date] = $link; |
96 | 98 | ||