Update of /cvsroot/openfirst/projects
In directory sc8-pr-cvs1:/tmp/cvs-serv24855
Modified Files:
preferences.php
Log Message:
When I removed the other update values from this file I accidentally broke off the end of the command. Here it is fixed.
Index: preferences.php
===================================================================
RCS file: /cvsroot/openfirst/projects/preferences.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** preferences.php 1 Nov 2003 17:12:32 -0000 1.10
--- preferences.php 1 Nov 2003 18:10:17 -0000 1.11
***************
*** 39,45 ****
// Save button process
if(isset($_POST['save'])){
! ofirst_dbquery("UPDATE ofirst_members SET
! ProjectsUpdates = '".$_POST['updates']."',
!
echo "<br><br><br>Your account options have been updated! [ <a href='preferences.php'>Preferences</a> ]<br><br><br>";
die(include_once($footer));
--- 39,43 ----
// Save button process
if(isset($_POST['save'])){
! ofirst_dbquery("UPDATE ofirst_members SET ProjectsUpdates = '".$_POST['updates']."' WHERE user = '".$user->user."';");
echo "<br><br><br>Your account options have been updated! [ <a href='preferences.php'>Preferences</a> ]<br><br><br>";
die(include_once($footer));
***************
*** 50,58 ****
</h2>
<p>This preference menu allows you to edit your daily update options<br>
! If the administrator activates daily updates then every single day you will
! receive an automatic<br>
! update e-mail with all the changes made for the particular day.</p>
! <p>The options below allow you to specify what kind<br>
! of information you would like sent and if you want to receive the updates.</p>
<form action='preferences.php' method='POST'>
<table width="527" align="center">
--- 48,54 ----
</h2>
<p>This preference menu allows you to edit your daily update options<br>
! If the administrator activates daily updates then you will receive updates related
! to that<br>
! particular day.</p>
<form action='preferences.php' method='POST'>
<table width="527" align="center">
|