fix autocomplete for /channel and /display
This commit is contained in:
parent
e2b4d33627
commit
46ed79c87a
@ -133,6 +133,7 @@ function channel_content(&$a, $update = 0, $load = false) {
|
||||
'bang' => '',
|
||||
'visitor' => (($is_owner || $observer) ? true : false),
|
||||
'profile_uid' => App::$profile['profile_uid'],
|
||||
'editor_autocomplete' => true,
|
||||
'bbco_autocomplete' => 'bbcode',
|
||||
'bbcode' => true
|
||||
);
|
||||
|
@ -65,7 +65,10 @@ function display_content(&$a, $update = 0, $load = false) {
|
||||
'visitor' => true,
|
||||
'profile_uid' => local_channel(),
|
||||
'return_path' => 'channel/' . $channel['channel_address'],
|
||||
'expanded' => true
|
||||
'expanded' => true,
|
||||
'editor_autocomplete' => true,
|
||||
'bbco_autocomplete' => 'bbcode',
|
||||
'bbcode' => true
|
||||
);
|
||||
|
||||
$o = '<div id="jot-popup">';
|
||||
|
Reference in New Issue
Block a user