diff options
author | friendica <info@friendica.com> | 2013-08-28 21:56:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-28 21:56:01 -0700 |
commit | b4bd518e4032661cdfba4e17acdb94e19b23fdd2 (patch) | |
tree | e6bf0cdfd844bcddb43f1579c42767abe9d5a7c8 /include/conversation.php | |
parent | 7b27add5468ae38534b8bceb458520e6c603da75 (diff) | |
download | volse-hubzilla-b4bd518e4032661cdfba4e17acdb94e19b23fdd2.tar.gz volse-hubzilla-b4bd518e4032661cdfba4e17acdb94e19b23fdd2.tar.bz2 volse-hubzilla-b4bd518e4032661cdfba4e17acdb94e19b23fdd2.zip |
silence some warnings at php E_ALL levels
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 8648209e9..82010b153 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -394,7 +394,9 @@ function visible_activity($item) { function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { $tstart = dba_timer(); + $t0 = $t1 = $t2 = $t3 = $t4 = $t5 = $t6 = null; $content_html = ''; + $o = ''; require_once('bbcode.php'); |