Skip to content

Commit

Permalink
🔤 formatando
Browse files Browse the repository at this point in the history
  • Loading branch information
bjverde committed Jun 8, 2022
1 parent 9a04b8d commit 8324375
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions base/classes/webform/TGrid.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2000,14 +2000,13 @@ public function addNumberColumn( $strName, $strTitle = null, $strFieldName = nul
* @return TGridCheckColumn
*/
public function addCheckColumn( string $strName
, string $strTitle = null
, $strKeyField
, $strDescField = null
, $boolReadOnly = null
, $boolAllowCheckAll = null )
, string $strTitle = null
, $strKeyField
, $strDescField = null
, $boolReadOnly = null
, $boolAllowCheckAll = null )
{
if ( !$strKeyField )
{
if ( !$strKeyField ){
$strKeyField = strtoupper( $strName );
}
$col = new TGridCheckColumn( $strName, $strTitle, $strKeyField, $strDescField, $boolReadOnly, $boolAllowCheckAll );
Expand Down

0 comments on commit 8324375

Please sign in to comment.