Adding get_lang variable in the fcb like input when writing new messages and adding tags

skala
Julio Montoya 15 years ago
parent 5cf052cc3d
commit 4320218306
  1. 3
      main/auth/profile.php
  2. 1
      main/messages/new_message.php

@ -410,7 +410,7 @@ foreach ($extra as $id => $field_details) {
$form->addElement('html',$pre_html.$multi_select.$post );
$url = api_get_path(WEB_AJAX_PATH).'user_manager.ajax.php';
$complete_text = get_lang('StartToType');
//if cache is set to true the jquery will be called 1 time
$jquery_ready_content.= <<<EOF
$("#extra_$field_details[1]").fcbkcomplete({
@ -418,6 +418,7 @@ foreach ($extra as $id => $field_details) {
cache: false,
filter_case: true,
filter_hide: true,
complete_text:"$complete_text",
firstselected: true,
//onremove: "testme",
//onselect: "testme",

@ -65,6 +65,7 @@ $(document).ready(function (){
cache: false,
filter_case: true,
filter_hide: true,
complete_text:"'.get_lang('StartToType').'",
firstselected: true,
//onremove: "testme",
//onselect: "testme",

Loading…
Cancel
Save