mirror of
https://github.com/e107inc/e107.git
synced 2025-08-13 01:54:12 +02:00
Installation fix.
This commit is contained in:
@@ -694,6 +694,7 @@ e107::js('footer-inline', js());
|
||||
|
||||
// Get list of current extended fields
|
||||
$curList = $ue->user_extended_get_fieldlist();
|
||||
$curNames = array();
|
||||
foreach($curList as $c)
|
||||
{
|
||||
$curNames[] = $c['user_extended_struct_name'];
|
||||
@@ -728,7 +729,7 @@ e107::js('footer-inline', js());
|
||||
|
||||
foreach($preList as $k=>$a)
|
||||
{
|
||||
if($k !='version') // don't know why this is appearing in the array.
|
||||
if($k !== 'version') // don't know why this is appearing in the array.
|
||||
{
|
||||
$active = (in_array($a['name'], $curNames)) ? TRUE : FALSE;
|
||||
$txt .= $this->show_predefined_field($a,$active);
|
||||
|
Reference in New Issue
Block a user