diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-02-29 06:56:59 -0500 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-02-29 06:56:59 -0500 |
commit | 68554741465e92fe2e462b8de4470ddd0eb91302 (patch) | |
tree | 97fe9b7eb83b696688f3eec9cffb4dc57d2a0901 /include | |
parent | 21d1dc48a8e83e55c55d894f85b742ef667553d7 (diff) | |
parent | fb33b4f2bcd18e63d311e6dba3aaa2ea5efdec3b (diff) | |
download | volse-hubzilla-68554741465e92fe2e462b8de4470ddd0eb91302.tar.gz volse-hubzilla-68554741465e92fe2e462b8de4470ddd0eb91302.tar.bz2 volse-hubzilla-68554741465e92fe2e462b8de4470ddd0eb91302.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
Update LICENSE
Update README
cleaned up mess created when both people request friendship and one approves as duplex
call time pass by reference deprecated
From Tobias H - catch some irregularities caused by cut/paste code
* master:
Diffstat (limited to 'include')
-rwxr-xr-x | include/html2bbcode.php | 2 | ||||
-rwxr-xr-x | include/items.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 65920380b..51d629940 100755 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -10,7 +10,7 @@ Originally made for the syncom project: http://wiki.piratenpartei.de/Syncom function node2bbcode(&$doc, $oldnode, $attributes, $startbb, $endbb) { do { - $done = node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb); + $done = node2bbcodesub($doc, $oldnode, $attributes, $startbb, $endbb); } while ($done); } diff --git a/include/items.php b/include/items.php index 7d52571c2..250d023ce 100755 --- a/include/items.php +++ b/include/items.php @@ -2424,7 +2424,7 @@ function local_delivery($importer,$data) { // This is my contact on another system, but it's really me. // Turn this into a wall post. - if($contact['remote_self']) + if($importer['remote_self']) $datarray['wall'] = 1; $datarray['parent-uri'] = $item_id; |