From 220db249a4ef7fab9a2739ef45412e2347e19dab Mon Sep 17 00:00:00 2001 From: Tim Lan Date: Wed, 4 Jun 2003 23:12:55 +0000 Subject: [PATCH] preference update message svn path=/trunk/boinc/; revision=1302 --- html/user/prefs.php | 3 +++ html/user/prefs_edit_action.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/html/user/prefs.php b/html/user/prefs.php index e70d07703a..63b917f168 100644 --- a/html/user/prefs.php +++ b/html/user/prefs.php @@ -9,6 +9,9 @@ $subset = $_GET["subset"]; page_head(subset_name($subset)." preferences"); + if ($_GET['updated']) { + echo '

Your preference has been updated and will take effect the next time BOINC starts, or you may manually retrieve the preference in the BOINC software.'; + } if ($subset == "global") { print_prefs_display_global($user); } else { diff --git a/html/user/prefs_edit_action.php b/html/user/prefs_edit_action.php index 9761d615fe..84b3e5c46f 100644 --- a/html/user/prefs_edit_action.php +++ b/html/user/prefs_edit_action.php @@ -41,6 +41,6 @@ if ($subset == "global") { venue_update($user); } } -Header("Location: prefs.php?subset=$subset"); +Header("Location: prefs.php?subset=$subset&updated=1"); ?>