diff options
author | redmatrix <git@macgirvin.com> | 2016-08-01 17:44:21 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-08-01 17:44:21 -0700 |
commit | 4c76b31684342259a43c036373f3757a916b1d3a (patch) | |
tree | 276f83e724c6cbff2177022526b17659ba4ec778 | |
parent | 3d0c90cbc5b756c6d54c4d41a136c0a38e67b013 (diff) | |
download | volse-hubzilla-4c76b31684342259a43c036373f3757a916b1d3a.tar.gz volse-hubzilla-4c76b31684342259a43c036373f3757a916b1d3a.tar.bz2 volse-hubzilla-4c76b31684342259a43c036373f3757a916b1d3a.zip |
/storeurl/cloudurl/
-rw-r--r-- | Zotlabs/Module/Impel.php | 2 | ||||
-rw-r--r-- | include/import.php | 4 | ||||
-rw-r--r-- | include/menu.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Module/Impel.php b/Zotlabs/Module/Impel.php index c1bf45a77..197d9f859 100644 --- a/Zotlabs/Module/Impel.php +++ b/Zotlabs/Module/Impel.php @@ -90,7 +90,7 @@ class Impel extends \Zotlabs\Web\Controller { $mitem['mitem_link'] = str_replace('[channelurl]',z_root() . '/channel/' . $channel['channel_address'],$it['link']); $mitem['mitem_link'] = str_replace('[pageurl]',z_root() . '/page/' . $channel['channel_address'],$it['link']); - $mitem['mitem_link'] = str_replace('[storeurl]',z_root() . '/store/' . $channel['channel_address'],$it['link']); + $mitem['mitem_link'] = str_replace('[cloudurl]',z_root() . '/cloud/' . $channel['channel_address'],$it['link']); $mitem['mitem_link'] = str_replace('[baseurl]',z_root(),$it['link']); $mitem['mitem_desc'] = escape_tags($it['desc']); diff --git a/include/import.php b/include/import.php index 27e0bfac6..5bbed828f 100644 --- a/include/import.php +++ b/include/import.php @@ -786,7 +786,7 @@ function import_menus($channel,$menus) { $mitem['mitem_link'] = str_replace('[channelurl]',z_root() . '/channel/' . $channel['channel_address'],$it['link']); $mitem['mitem_link'] = str_replace('[pageurl]',z_root() . '/page/' . $channel['channel_address'],$it['link']); - $mitem['mitem_link'] = str_replace('[storeurl]',z_root() . '/store/' . $channel['channel_address'],$it['link']); + $mitem['mitem_link'] = str_replace('[cloudurl]',z_root() . '/cloud/' . $channel['channel_address'],$it['link']); $mitem['mitem_link'] = str_replace('[baseurl]',z_root(),$it['link']); $mitem['mitem_desc'] = escape_tags($it['desc']); @@ -871,7 +871,7 @@ function sync_menus($channel,$menus) { $mitem['mitem_link'] = str_replace('[channelurl]',z_root() . '/channel/' . $channel['channel_address'],$it['link']); $mitem['mitem_link'] = str_replace('[pageurl]',z_root() . '/page/' . $channel['channel_address'],$it['link']); - $mitem['mitem_link'] = str_replace('[storeurl]',z_root() . '/store/' . $channel['channel_address'],$it['link']); + $mitem['mitem_link'] = str_replace('[cloudurl]',z_root() . '/cloud/' . $channel['channel_address'],$it['link']); $mitem['mitem_link'] = str_replace('[baseurl]',z_root(),$it['link']); $mitem['mitem_desc'] = escape_tags($it['desc']); diff --git a/include/menu.php b/include/menu.php index 71d0e3ffe..3b0180d37 100644 --- a/include/menu.php +++ b/include/menu.php @@ -49,7 +49,7 @@ function menu_element($channel,$menu) { $entry['link'] = str_replace(z_root() . '/channel/' . $channel['channel_address'],'[channelurl]',$it['mitem_link']); $entry['link'] = str_replace(z_root() . '/page/' . $channel['channel_address'],'[pageurl]',$it['mitem_link']); - $entry['link'] = str_replace(z_root() . '/store/' . $channel['channel_address'],'[storeurl]',$it['mitem_link']); + $entry['link'] = str_replace(z_root() . '/cloud/' . $channel['channel_address'],'[cloudurl]',$it['mitem_link']); $entry['link'] = str_replace(z_root(),'[baseurl]',$it['mitem_link']); $entry['desc'] = $it['mitem_desc']; |