Changeset 1755

Show
Ignore:
Timestamp:
03/09/2007 03:45:11 PM (19 months ago)
Author:
xue
Message:

Fixed #558.

Location:
branches/3.0
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/3.0/HISTORY

    r1649 r1755  
    55BUG: Ticket#505 - cultureInfo::getEnglishName does not return an arrary (Wei) 
    66BUG: Ticket#508 - CultureInfo class: PHP Notice because of missing static declaration (Wei) 
     7BUG: Ticket#558 - TRadionButtonList generates a empty onclick attribute (Qiang) 
    78 
    89Version 3.0.6 December 4, 2006 
  • branches/3.0/framework/Web/UI/WebControls/TCheckBox.php

    r1397 r1755  
    255255                        $value=$attributes->remove('value'); 
    256256                        // onclick js should only be added to input tag 
    257                         $onclick=$attributes->remove('onclick'); 
     257                        if(($onclick=$attributes->remove('onclick'))===null) 
     258                                $onclick=''; 
    258259                        if($attributes->getCount()) 
    259260                        {