Skip to content

Commit

Permalink
defensive @ in case data not available
Browse files Browse the repository at this point in the history
  • Loading branch information
bob committed Sep 30, 2020
1 parent 6b46a64 commit c2d1c20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seedcore/SEEDUIWidgets.php
Expand Up @@ -530,7 +530,7 @@ function ListDrawBasic( $raList, $iOffset, $nSize, $raParms = array() )
}
$s .= "<tr class='sfuiListRow sfuiListRow$rowClass'>";
foreach( $raParms['cols'] as $raCol ) {
$v = $raRow[$raCol['col']];
$v = @$raRow[$raCol['col']];

$sColStyle = "cursor:pointer;";
if( ($p = @$raCol['align']) ) $sColStyle .= "text-align:$p;";
Expand Down

0 comments on commit c2d1c20

Please sign in to comment.