* 'location_id' ID of location
* 'location_ns' Namespace of location
*/
- function __construct($action, $options=null)
+ function __construct(Action $action, array $options = array())
{
- // XXX: ??? Is this to keep notice forms distinct?
- // Do we have to worry about sub-second race conditions?
- // XXX: Needs to be above the parent::__construct() call...?
+ parent::__construct($action);
+ // When creating a notice form we don't want to collide with
+ // possibly existing HTML elements, as naming conventions are similar.
$this->id_suffix = rand();
- parent::__construct($action);
- if (is_null($options)) {
- $options = array();
- }
--
$this->actionName = $action->trimmed('action');
$prefill = array('content', 'inreplyto', 'lat',