Update of /cvsroot/xoops/xoops-current/html
In directory usw-pr-cvs1:/tmp/cvs-serv19292
Modified Files:
install.php
Log Message:
no message
Index: install.php
===================================================================
RCS file: /cvsroot/xoops/xoops-current/html/install.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** install.php 19 Sep 2002 17:30:36 -0000 1.15
--- install.php 20 Sep 2002 17:03:21 -0000 1.16
***************
*** 1178,1182 ****
case "createTables":
include_once("mainfile.php");
! if (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+([\.][a-z0-9-]+)+$",$adminmail)) {
install_header();
echo "<div style='text-align:center'><b>"._INSTALL_L73."</b>\n";
--- 1178,1182 ----
case "createTables":
include_once("mainfile.php");
! if (!preg_match("/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+([\.][a-z0-9-]+)+$/i",$adminmail)) {
install_header();
echo "<div style='text-align:center'><b>"._INSTALL_L73."</b>\n";
|