diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2014-11-14 00:45:25 +0100 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2014-11-14 00:45:25 +0100 |
commit | e8b77fbdff6cfd9455db378b5edb00fece74fea2 (patch) | |
tree | 5f9262cf5e053044df04184cb87192035cf07802 /boot.php | |
parent | e4859d4bd70b1649e7ebe4cbb285a0993a837f85 (diff) | |
download | volse-hubzilla-e8b77fbdff6cfd9455db378b5edb00fece74fea2.tar.gz volse-hubzilla-e8b77fbdff6cfd9455db378b5edb00fece74fea2.tar.bz2 volse-hubzilla-e8b77fbdff6cfd9455db378b5edb00fece74fea2.zip |
Fixed a variable conflict in mod/xchan.php.
A variable $rr inside the foreachs was used twice.
Add translation to mod/xchan.php.
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -950,7 +950,7 @@ class App { foreach($this->widgets as $w) { if ($w['location'] == $location) $ret[] = $w; - } + } $arr = array('location' => $location, 'widgets' => $ret); call_hooks('get_widgets', $arr); return $arr['widgets']; |