bug 512254 missing comma

This commit is contained in:
Marc Delisle
2002-02-03 14:30:55 +00:00
parent 87695b65e7
commit 28bde7dbb1
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,6 @@
<?php
/* $Id$*/
/**
* Gets some core libraries
*/
@@ -84,7 +83,7 @@ function PMA_tableGrants(&$host_db_result, $dbcheck = FALSE) {
if ($parts[1] == 'USAGE') {
$priv = '';
} else {
$priv = ereg_replace('REFERENCE([^S]|$)', 'REFERENCES', trim($parts[1]));
$priv = ereg_replace('REFERENCE([^S]|$)', 'REFERENCES\\1', trim($parts[1]));
}
$db = $parts[2];
$table = trim($parts[3]);