diff options
author | redmatrix <git@macgirvin.com> | 2016-02-18 15:26:50 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-18 15:26:50 -0800 |
commit | 4512a4cdd4713117dabad607e74578af16306350 (patch) | |
tree | 69aea5f63140a2bc3a79d39e4a452f01a06e7c58 /include | |
parent | 342fda94e4162634eeb67c18c1d284e7d78f217f (diff) | |
parent | 33c34984e647f48452d53b93b635f6f517a0f392 (diff) | |
download | volse-hubzilla-4512a4cdd4713117dabad607e74578af16306350.tar.gz volse-hubzilla-4512a4cdd4713117dabad607e74578af16306350.tar.bz2 volse-hubzilla-4512a4cdd4713117dabad607e74578af16306350.zip |
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'include')
-rw-r--r-- | include/widgets.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/widgets.php b/include/widgets.php index fa2b3de4d..a995fdf1c 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -542,11 +542,14 @@ function widget_settings_menu($arr) { 'selected' => ((argv(1) === 'oauth') ? 'active' : ''), ); - $tabs[] = array( - 'label' => t('Export channel'), - 'url' => $a->get_baseurl(true) . '/uexport', - 'selected' => '' - ); + // IF can go away when UNO export and import is fully functional + if(! UNO) { + $tabs[] = array( + 'label' => t('Export channel'), + 'url' => $a->get_baseurl(true) . '/uexport', + 'selected' => '' + ); + } if($role === false || $role === 'custom') { $tabs[] = array( |