[Openfirst-cvscommit] feedback/admin index.php,1.5,1.6
Brought to you by:
xtimg
From: <dav...@us...> - 2003-09-13 15:36:02
|
Update of /cvsroot/openfirst/feedback/admin In directory sc8-pr-cvs1:/tmp/cvs-serv20239 Modified Files: index.php Log Message: Minor bug and design changes. Index: index.php =================================================================== RCS file: /cvsroot/openfirst/feedback/admin/index.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.php 1 Sep 2003 20:16:25 -0000 1.5 --- index.php 13 Sep 2003 15:35:59 -0000 1.6 *************** *** 30,34 **** if(isset($_POST["feedbackusers"])) { ! echo("<p>The feedback users have been modified as per your request.</p>"); // Delete current users, as they will all be replaced with new users. $query = ofirst_dbquery("DELETE FROM ofirst_feedbackusers;"); --- 30,37 ---- if(isset($_POST["feedbackusers"])) { ! ! echo("<p><br>The feedback users have been modified as per your request. [ <a href='index.php'>Manage</a> ]<br></p>"); ! die(include($footer)); ! // Delete current users, as they will all be replaced with new users. $query = ofirst_dbquery("DELETE FROM ofirst_feedbackusers;"); *************** *** 46,52 **** echo("<h1>Feedback</h1> <p>Use this form to setup the users of the feedback system. Each user should be on a ! new line with their email address first, then a space and their name (as it should appear on the feedback form).</p> ! <form method='post' action='./'> "); --- 49,55 ---- echo("<h1>Feedback</h1> <p>Use this form to setup the users of the feedback system. Each user should be on a ! new line with their email address first,<br> then a space and their name (as it should appear on the feedback form).</p> ! <form method='post' action='index.php'> "); *************** *** 59,63 **** } } else { ! echo("<textarea name='feedbackusers' rows='10' cols='50'>xt...@us... Tim Ginn"); } echo("</textarea><br /><input type='submit' value='Update Feedback Users' /></form>"); --- 62,66 ---- } } else { ! echo("<textarea name='feedbackusers' rows='10' cols='50'>jo...@so... Joe Somebody"); } echo("</textarea><br /><input type='submit' value='Update Feedback Users' /></form>"); |