diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/network.php | 2 | ||||
-rw-r--r-- | mod/settings.php | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php index 9ab34ebb0..04c2a1782 100644 --- a/mod/network.php +++ b/mod/network.php @@ -151,7 +151,7 @@ function network_content(&$a, $update = 0) { ), array( 'label' => t('Posted Order'), - 'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . '?order=post' . ((x($_GET,'cid')) ? '?cid=' . $_GET['cid'] : ''), + 'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . '?order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), 'sel'=>$postord_active, ), diff --git a/mod/settings.php b/mod/settings.php index b5997fbe7..84f66d263 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -293,8 +293,13 @@ function settings_post(&$a) { $url = $_SESSION['my_url']; if($url && strlen(get_config('system','directory_submit_url'))) proc_run('php',"include/directory.php","$url"); + } +// not yet ready for prime time +// require_once('include/profile_update.php'); +// profile_change(); + $_SESSION['theme'] = $theme; if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) { |