diff --git a/libraries/cms/html/grid.php b/libraries/cms/html/grid.php index c4fe2b439dfdd..b66788bdce1db 100644 --- a/libraries/cms/html/grid.php +++ b/libraries/cms/html/grid.php @@ -136,14 +136,15 @@ public static function checkall($name = 'checkall-toggle', $tip = 'JGLOBAL_CHECK * @param integer $recId The record id * @param boolean $checkedOut True if item is checke out * @param string $name The name of the form element + * @param string $stub The name of stub identifier * * @return mixed String of html with a checkbox if item is not checked out, null if checked out. * * @since 1.5 */ - public static function id($rowNum, $recId, $checkedOut = false, $name = 'cid') + public static function id($rowNum, $recId, $checkedOut = false, $name = 'cid', $stub = 'cb') { - return $checkedOut ? '' : ''; }