Skip to content
Snippets Groups Projects
Commit 22b77ede authored by Christopher Smith's avatar Christopher Smith
Browse files

improve comments on settings::update() method

parent aae735fc
No related branches found
No related tags found
No related merge requests found
......@@ -388,10 +388,12 @@ if (!class_exists('setting')) {
}
/**
* update setting with user provided value $input
* if value fails error check, save it
* update changed setting with user provided value $input
* - if changed value fails error check, save it to $this->_input (to allow echoing later)
* - if changed value passes error check, set $this->_local to the new value
*
* @return boolean true if changed, false otherwise (incl. on error)
* @param mixed $input the new value
* @return boolean true if changed, false otherwise (incl. on error)
*/
function update($input) {
if (is_null($input)) return false;
......
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