Add missing semi-colons.

git-svn-id: https://develop.svn.wordpress.org/trunk@1303 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2004-05-18 03:58:05 +00:00
parent 592b88b572
commit c3323b316f
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ case 'adduser':
$standalone = 1;
require_once('admin-header.php');
check_admin_referer()
check_admin_referer();
function filter($value) {
return ereg('^[a-zA-Z0-9\_-\|]+$',$value);
@ -104,7 +104,7 @@ case 'promote':
$standalone = 1;
require_once('admin-header.php');
check_admin_referer()
check_admin_referer();
if (empty($_GET['prom'])) {
header('Location: users.php');
@ -138,7 +138,7 @@ case 'delete':
$standalone = 1;
require_once('admin-header.php');
check_admin_referer()
check_admin_referer();
$id = intval($_GET['id']);