diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-06-14 09:42:43 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-06-14 09:42:43 +0200 |
commit | 5c458e9111d8853891a0545d63fe7f55ee0f5a41 (patch) | |
tree | 01f80be918dd76a58cc1102166c53048631aed8a /Zotlabs/Module/Editlayout.php | |
parent | b6d425838f9025d8faf6dbfe90fce091d94b3cd7 (diff) | |
parent | 0ef2622621867fa197988974b47eff85f20a80e7 (diff) | |
download | volse-hubzilla-5c458e9111d8853891a0545d63fe7f55ee0f5a41.tar.gz volse-hubzilla-5c458e9111d8853891a0545d63fe7f55ee0f5a41.tar.bz2 volse-hubzilla-5c458e9111d8853891a0545d63fe7f55ee0f5a41.zip |
Merge branch 'dev' into sabre32
Diffstat (limited to 'Zotlabs/Module/Editlayout.php')
-rw-r--r-- | Zotlabs/Module/Editlayout.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Editlayout.php b/Zotlabs/Module/Editlayout.php index 5028882d2..fe794b5fd 100644 --- a/Zotlabs/Module/Editlayout.php +++ b/Zotlabs/Module/Editlayout.php @@ -96,11 +96,12 @@ class Editlayout extends \Zotlabs\Web\Controller { intval($owner) ); - $item_id = q("select * from item_id where service = 'PDL' and iid = %d limit 1", + $item_id = q("select * from iconfig where cat = 'system' and k = 'PDL' and iid = %d limit 1", intval($itm[0]['id']) ); if($item_id) - $layout_title = $item_id[0]['sid']; + $layout_title = $item_id[0]['v']; + $rp = 'layouts/' . $which; |