diff options
Diffstat (limited to 'adodb-xmlschema03.inc.php')
| -rw-r--r-- | adodb-xmlschema03.inc.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/adodb-xmlschema03.inc.php b/adodb-xmlschema03.inc.php index 865ad3a0..37e9e6b5 100644 --- a/adodb-xmlschema03.inc.php +++ b/adodb-xmlschema03.inc.php @@ -2106,8 +2106,10 @@ class adoSchema { . '<schema version="' . $this->schemaVersion . '">' . "\n"; if( is_array( $tables = $this->db->MetaTables( 'TABLES' ,false ,($prefix) ? str_replace('_','\_',$prefix).'%' : '') ) ) { foreach( $tables as $table ) { - $schema .= $indent.'<table name="'.htmlentities( $stripprefix ? str_replace($prefix, '', $table): $table ) . '">' . "\n"; - $schema .= $indent . '<table name="' . htmlentities( $table ) . '">' . "\n"; + $schema .= $indent + . '<table name="' + . htmlentities( $stripprefix ? str_replace($prefix, '', $table) : $table ) + . '">' . "\n"; // grab details from database $rs = $this->db->Execute( 'SELECT * FROM ' . $table . ' WHERE -1' ); |
