Skip to content
Snippets Groups Projects
Commit 1534dc5b authored by Andreas Gohr's avatar Andreas Gohr
Browse files

make Doku_Form members public again. fixes #1982

Various plugins access the form members directly currently.
parent 617a2b42
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment