Update of /cvsroot/openfirst/feedback/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16278
Modified Files:
index.php
Log Message:
Commit final changes to feedback module before release.
Index: index.php
===================================================================
RCS file: /cvsroot/openfirst/feedback/admin/index.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** index.php 15 Apr 2004 00:45:36 -0000 1.14
--- index.php 15 Apr 2004 00:51:54 -0000 1.15
***************
*** 16,23 ****
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
--- 16,19 ----
***************
*** 40,44 ****
$femail = trim(substr($lin, 0, strpos($lin, " ")));
// Create the new users for the feedback list
! $query = ofirst_dbquery("INSERT INTO ofirst_feedbackusers (name, email) VALUES ('$fname', '$femail');") or die(mysql_error());
}
echo("<p><br>The feedback users have been modified as per your request. [ <a href='index.php'>Manage</a> ]<br></p>");
--- 36,40 ----
$femail = trim(substr($lin, 0, strpos($lin, " ")));
// Create the new users for the feedback list
! ofirst_dbquery("INSERT INTO ofirst_feedbackusers (name, email) VALUES ('$fname', '$femail');");
}
echo("<p><br>The feedback users have been modified as per your request. [ <a href='index.php'>Manage</a> ]<br></p>");
***************
*** 50,54 ****
<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'>");
--- 46,50 ----
<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). <b>All e-mail addresses must be unique</b></p>
<form method='post' action='index.php'>");
|