mirror of
https://github.com/friendica/friendica
synced 2025-04-24 06:30:13 +00:00
code lisibility & filter optimization
This commit is contained in:
parent
4496df79ab
commit
ec2c84a4e9
4 changed files with 21 additions and 22 deletions
|
@ -855,7 +855,7 @@ class DBStructure
|
|||
*/
|
||||
public static function getColumns($table)
|
||||
{
|
||||
$r = DBA::p("SHOW COLUMNS FROM `" . $table . "`");
|
||||
return DBA::toArray($r);
|
||||
$stmtColumns = DBA::p("SHOW COLUMNS FROM `" . $table . "`");
|
||||
return DBA::toArray($stmtColumns);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue