mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
dumbness++
git-svn-id: file:///svn/phpbb/trunk@6098 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
bd3c8c50c0
commit
ef9b725379
1 changed files with 5 additions and 3 deletions
|
@ -125,7 +125,7 @@ class acp_profile
|
||||||
|
|
||||||
preg_match('#\((.*)\)#s', $row['sql'], $matches);
|
preg_match('#\((.*)\)#s', $row['sql'], $matches);
|
||||||
|
|
||||||
$new_table_cols = $matches[1];
|
$new_table_cols = trim($matches[1]);
|
||||||
$old_table_cols = explode(',', $new_table_cols);
|
$old_table_cols = explode(',', $new_table_cols);
|
||||||
$column_list = array();
|
$column_list = array();
|
||||||
foreach($old_table_cols as $declaration)
|
foreach($old_table_cols as $declaration)
|
||||||
|
@ -917,7 +917,7 @@ class acp_profile
|
||||||
'field_hide' => $cp->vars['field_hide'],
|
'field_hide' => $cp->vars['field_hide'],
|
||||||
'field_no_view' => $cp->vars['field_no_view']
|
'field_no_view' => $cp->vars['field_no_view']
|
||||||
);
|
);
|
||||||
|
$db->sql_transaction('begin');
|
||||||
if ($action == 'create')
|
if ($action == 'create')
|
||||||
{
|
{
|
||||||
$profile_fields += array(
|
$profile_fields += array(
|
||||||
|
@ -1029,12 +1029,13 @@ class acp_profile
|
||||||
|
|
||||||
preg_match('#\((.*)\)#s', $row['sql'], $matches);
|
preg_match('#\((.*)\)#s', $row['sql'], $matches);
|
||||||
|
|
||||||
$new_table_cols = $matches[1];
|
$new_table_cols = trim($matches[1]);
|
||||||
$old_table_cols = explode(',', $new_table_cols);
|
$old_table_cols = explode(',', $new_table_cols);
|
||||||
$column_list = array();
|
$column_list = array();
|
||||||
foreach($old_table_cols as $declaration)
|
foreach($old_table_cols as $declaration)
|
||||||
{
|
{
|
||||||
$entities = preg_split('#\s+#', $declaration);
|
$entities = preg_split('#\s+#', $declaration);
|
||||||
|
var_dump($entities);
|
||||||
$column_list[] = $entities[0];
|
$column_list[] = $entities[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1380,6 +1381,7 @@ class acp_profile
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$db->sql_transaction('commit');
|
||||||
$db->sql_transaction('begin');
|
$db->sql_transaction('begin');
|
||||||
|
|
||||||
if ($action == 'create')
|
if ($action == 'create')
|
||||||
|
|
Loading…
Add table
Reference in a new issue