removed php4.3+ print_r($arr,True)

This commit is contained in:
Ralf Becker 2004-07-02 09:51:21 +00:00
parent 5df1f31098
commit fcfcaa578e

View File

@ -598,7 +598,7 @@
}
// renameing existing indexes and primary keys
$indexes = $oProc->m_odb->Link_ID->MetaIndexes($sOldTableName,True);
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): Fetching indexes: '.print_r($indexes,True); }
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): Fetching indexes: '; _debug_array($indexes); }
foreach($indexes as $name => $data)
{
$new_name = str_replace($sOldTableName,$sNewTableName,$name);