Skip to content

Commit

Permalink
Provide an 'unimplemented' alert for the search (CFM-174)
Browse files Browse the repository at this point in the history
  • Loading branch information
arlen committed Jun 23, 2022
1 parent d14d22f commit f921022
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions app/templates/element/searchGlobal.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,18 @@
*/

$options = array(
'type' => 'get',
// XXX Re-enable and adjust the following when we are ready to implement the search feature
/*'type' => 'get',
'url' => array(
'plugin' => null,
'action' => 'search'
)
)*/
// XXX For now, note that this feature is unimplemented
'type' => 'get',
'url' => array(
'plugin' => null
),
'onsubmit' => 'alert("unimplemented"); return false;'
);

print $this->Form->create(null, $options);
Expand Down

0 comments on commit f921022

Please sign in to comment.