aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/configureController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/configureController.php')
-rwxr-xr-xapp/controllers/configureController.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php
index b50b243cf..31885d30e 100755
--- a/app/controllers/configureController.php
+++ b/app/controllers/configureController.php
@@ -270,11 +270,17 @@ class configureController extends ActionController {
public function sharingAction () {
if (Request::isPost ()) {
$urlShaarli = Request::param ('shaarli', '');
+ $urlPoche = Request::param ('poche', '');
+ $urlDiaspora = Request::param ('diaspora', '');
$this->view->conf->_urlShaarli ($urlShaarli);
+ $this->view->conf->_urlPoche ($urlPoche);
+ $this->view->conf->_urlDiaspora ($urlDiaspora);
$values = array (
- 'url_shaarli' => $this->view->conf->urlShaarli ()
+ 'url_shaarli' => $this->view->conf->urlShaarli (),
+ 'url_poche' => $this->view->conf->urlPoche (),
+ 'url_diaspora' => $this->view->conf->urlDiaspora ()
);
$confDAO = new RSSConfigurationDAO ();