diff options
author | friendica <info@friendica.com> | 2013-01-16 21:34:36 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-16 21:34:36 -0800 |
commit | 2ae2bb4191b41effcfa137cc4ef99aa1ded021bd (patch) | |
tree | c37f1e7a025ed8bdc63ff96b621a4d2254be4880 /mod/settings.php | |
parent | 92cf3aae10b27ee60f394e27d2744557bacb6756 (diff) | |
download | volse-hubzilla-2ae2bb4191b41effcfa137cc4ef99aa1ded021bd.tar.gz volse-hubzilla-2ae2bb4191b41effcfa137cc4ef99aa1ded021bd.tar.bz2 volse-hubzilla-2ae2bb4191b41effcfa137cc4ef99aa1ded021bd.zip |
provide other ways to export the basic info
Diffstat (limited to 'mod/settings.php')
-rw-r--r-- | mod/settings.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mod/settings.php b/mod/settings.php index db204bc50..d75fe3043 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -63,11 +63,18 @@ function settings_init(&$a) { ), array( - 'label' => t('Export personal data'), - 'url' => $a->get_baseurl(true) . '/uexport', + 'label' => t('Export channel'), + 'url' => $a->get_baseurl(true) . '/uexport/basic', 'selected' => '' ), +// array( +// 'label' => t('Export account'), +// 'url' => $a->get_baseurl(true) . '/uexport/complete', +// 'selected' => '' +// ), + + ); $tabtpl = get_markup_template("generic_links_widget.tpl"); |