diff options
author | cvogeley <christian.vogeley@hotmail.de> | 2014-01-11 16:55:06 -0800 |
---|---|---|
committer | cvogeley <christian.vogeley@hotmail.de> | 2014-01-11 16:55:06 -0800 |
commit | 3e54ccde088cd19ad54df4da9317934106bc3722 (patch) | |
tree | 182be0cec21bd4a77eb75d413101355731104c24 | |
parent | 3dfcb7510cafcb90a798f069155fed1e99d12600 (diff) | |
parent | 7a9ea83382f1e54b183246aebc062f5ad2e16f23 (diff) | |
download | volse-hubzilla-3e54ccde088cd19ad54df4da9317934106bc3722.tar.gz volse-hubzilla-3e54ccde088cd19ad54df4da9317934106bc3722.tar.bz2 volse-hubzilla-3e54ccde088cd19ad54df4da9317934106bc3722.zip |
Merge pull request #266 from cvogeley/master
Fix webpage layout title editing
-rw-r--r-- | mod/editlayout.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mod/editlayout.php b/mod/editlayout.php index e6be1056f..86de0e676 100644 --- a/mod/editlayout.php +++ b/mod/editlayout.php @@ -57,7 +57,11 @@ function editlayout_content(&$a) { intval($owner) ); - + $item_id = q("select * from item_id where service = 'PDL' and iid = %d limit 1", + $itm[0]['id'] + ); + if($item_id) + $layout_title = $item_id[0]['sid']; $plaintext = true; // You may or may not be a local user. This won't work, @@ -120,6 +124,7 @@ function editlayout_content(&$a) { '$jotnets' => $jotnets, '$title' => htmlspecialchars($itm[0]['title'],ENT_COMPAT,'UTF-8'), '$placeholdertitle' => t('Set title'), + '$pagetitle' => $layout_title, '$category' => '', '$placeholdercategory' => t('Categories (comma-separated list)'), '$emtitle' => t('Example: bob@example.com, mary@example.com'), @@ -134,7 +139,7 @@ function editlayout_content(&$a) { '$feature_expire' => 'none', '$expires' => t('Set expiration date'), )); - + $ob = get_observer_hash(); if(($itm[0]['author_xchan'] === $ob) || ($itm[0]['owner_xchan'] === $ob)) |