diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-29 14:27:24 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-29 14:27:24 +0000 |
commit | c942e6441b0b69ba3793f9668c1ae8bf8393cba5 (patch) | |
tree | 510295d1f2baec0b37eb2a07520c2230dd94b538 /mod/updateclient/views | |
parent | ba1ceb336c2ec35816342c38017e8f3700308155 (diff) | |
download | elgg-c942e6441b0b69ba3793f9668c1ae8bf8393cba5.tar.gz elgg-c942e6441b0b69ba3793f9668c1ae8bf8393cba5.tar.bz2 |
Update client gets updates
git-svn-id: https://code.elgg.org/elgg/trunk@1569 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/updateclient/views')
-rw-r--r-- | mod/updateclient/views/default/settings/updateclient/edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/updateclient/views/default/settings/updateclient/edit.php b/mod/updateclient/views/default/settings/updateclient/edit.php index 3cd64b448..584311c5a 100644 --- a/mod/updateclient/views/default/settings/updateclient/edit.php +++ b/mod/updateclient/views/default/settings/updateclient/edit.php @@ -9,13 +9,13 @@ * @link http://elgg.com/ */ - + global $DEFAULT_UPDATE_SERVER; ?> <p> <h3><?php echo elgg_echo('updateclient:settings:server'); ?>: </h3> <?php - $server = ($vars['entity']->updateserver ? $vars['entity']->updateserver : 'http://updates.elgg.org/services/api/rest.php'); + $server = ($vars['entity']->updateserver ? $vars['entity']->updateserver : $DEFAULT_UPDATE_SERVER); echo elgg_view('input/text', array('internalname' => 'params[updateserver]', 'value' => $server)); ?> </p> |