make Doku_Form members public again. fixes #1982

Various plugins access the form members directly currently.
This commit is contained in:
Andreas Gohr 2017-05-25 10:35:14 +02:00
parent 617a2b42a2
commit 1534dc5b30
1 changed files with 4 additions and 4 deletions

View File

@ -28,17 +28,17 @@ if(!defined('DOKU_INC')) die('meh.');
class Doku_Form {
// Form id attribute
protected $params = array();
public $params = array();
// Draw a border around form fields.
// Adds <fieldset></fieldset> around the elements
protected $_infieldset = false;
public $_infieldset = false;
// Hidden form fields.
protected $_hidden = array();
public $_hidden = array();
// Array of pseudo-tags
protected $_content = array();
public $_content = array();
/**
* Constructor