|
From: Jonathan H. <the...@us...> - 2002-02-15 21:39:00
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv7481
Modified Files:
admin_db_utilities.php
Log Message:
Fix for #518056 in bug tracker... Me and my D@mned typos.... Amazing what a difference one little letter, and one extra space can make... :(
Index: admin_db_utilities.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_db_utilities.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -r1.34 -r1.35
*** admin_db_utilities.php 1 Feb 2002 15:07:42 -0000 1.34
--- admin_db_utilities.php 15 Feb 2002 21:38:57 -0000 1.35
***************
*** 226,230 ****
}
! $schema_create .= ", $crlf";
}
--- 226,230 ----
}
! $schema_create .= ",$crlf";
}
***************
*** 279,283 ****
while(list($idx_name, $props) = each($index_rows))
{
! $props['column_names'] = ereg_replace(", $", "" , $props['column_name']);
$index_create .= 'CREATE ' . $props['unique'] . " INDEX $idx_name ON $table (" . $props['column_names'] . ");$crlf";
}
--- 279,283 ----
while(list($idx_name, $props) = each($index_rows))
{
! $props['column_names'] = ereg_replace(", $", "" , $props['column_names']);
$index_create .= 'CREATE ' . $props['unique'] . " INDEX $idx_name ON $table (" . $props['column_names'] . ");$crlf";
}
|