diff options
author | friendica <info@friendica.com> | 2013-12-11 19:43:41 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-11 19:43:41 -0800 |
commit | b4e1e8a4a43721d0134e41944afaa9f45bcd8aa8 (patch) | |
tree | 4ad54778112984ced01500e25cb16b44b98f256f /boot.php | |
parent | 2f46bacded409c86514bc7542a01337c3cbf642a (diff) | |
download | volse-hubzilla-b4e1e8a4a43721d0134e41944afaa9f45bcd8aa8.tar.gz volse-hubzilla-b4e1e8a4a43721d0134e41944afaa9f45bcd8aa8.tar.bz2 volse-hubzilla-b4e1e8a4a43721d0134e41944afaa9f45bcd8aa8.zip |
The affinity tool is not a "traditional" widget. But it is nevertheless a widget. It just makes fewer page layout decisions which are hard-coded. If you want to shrink it down and put it on the sidebar in your theme, go for it.
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1883,7 +1883,8 @@ function construct_page(&$a) { $v = str_replace('$nav',$a->page['nav'],$v); } if(strpos($v,'$content') !== false) { - $v = str_replace('$content',$a->page['section'],$v); + + $v = str_replace('$content',$a->page['content'],$v); } $a->page[substr($k,7)] = $v; |