- Allow creation of an ticket in a different initial state via the new 'initial_state_path' attribute.

- Support update of CaseLog fields in bulk_modify mode.

SVN:trunk[1517]
This commit is contained in:
Denis Flaven
2011-08-25 16:04:58 +00:00
parent c74c955973
commit 6df6e4a9cc
11 changed files with 249 additions and 21 deletions

View File

@@ -96,11 +96,11 @@ class WebPage
}
/**
* Add any text or HTML fragment at the end of the body of the page
* Add any text or HTML fragment (identified by an ID) at the end of the body of the page
* This is useful to add hidden content, DIVs or FORMs that should not
* be embedded into each other.
*/
public function add_at_the_end($s_html)
public function add_at_the_end($s_html, $sId = '')
{
$this->s_deferred_content .= $s_html;
}