API CHANGE MultiForm::$start_step is now declared as public, not protected, due to changes in Object::get_static()

This commit is contained in:
Sean Harvey 2010-05-11 03:30:55 +00:00
parent 60fa84df85
commit 209e56aa4b
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ abstract class MultiForm extends Form {
*
* @var string Classname of a {@link MultiFormStep} subclass
*/
protected static $start_step;
public static $start_step;
/**
* Set the casting for these fields.

View File

@ -114,7 +114,7 @@ class MultiFormTest_Controller extends Controller implements TestOnly {
}
class MultiFormTest_Form extends MultiForm implements TestOnly {
protected static $start_step = 'MultiFormTest_StepOne';
public static $start_step = 'MultiFormTest_StepOne';
function getStartStep() {
return $this->stat('start_step');