mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-03 12:00:09 +01:00
Fix for no prefs column display
This commit is contained in:
parent
bcbe93152e
commit
ccd52fc7a8
@ -483,10 +483,12 @@
|
|||||||
$myowner = $entries[$i]['owner'];
|
$myowner = $entries[$i]['owner'];
|
||||||
|
|
||||||
/* each entry column */
|
/* each entry column */
|
||||||
while ($column = each($columns_to_display))
|
@reset($columns_to_display);
|
||||||
|
while ($column = @each($columns_to_display))
|
||||||
{
|
{
|
||||||
$ref = $data='';
|
$ref = $data='';
|
||||||
$coldata = $entries[$i][$column[0]];
|
$coldata = $entries[$i][$column[0]];
|
||||||
|
/* echo '<br>coldata="' . $coldata . '"'; */
|
||||||
/* Some fields require special formatting. */
|
/* Some fields require special formatting. */
|
||||||
if ($column[0] == 'url')
|
if ($column[0] == 'url')
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user