1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Installation fix.

This commit is contained in:
Cameron
2020-12-26 08:02:34 -08:00
parent c0736df559
commit 7989ebfc72
4 changed files with 14 additions and 10 deletions

View File

@@ -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);