From 7fb93673bc97397d334d87914413c98679cae864 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Jun 2011 21:55:00 +0000 Subject: [PATCH] Get rid of PHP notice --- plugins/Bookmark/bookmarkforurl.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/Bookmark/bookmarkforurl.php b/plugins/Bookmark/bookmarkforurl.php index d3a1a2c76f..018bd5c9e4 100644 --- a/plugins/Bookmark/bookmarkforurl.php +++ b/plugins/Bookmark/bookmarkforurl.php @@ -47,9 +47,10 @@ if (!defined('STATUSNET')) { class BookmarkforurlAction extends Action { - protected $url; - protected $oembed; - protected $thumbnail; + protected $url = null; + protected $oembed = null; + protected $thumbnail = null; + protected $title = null; /** * For initializing members of the class. -- 2.39.5