i got error message when remove buddy

* warning: Illegal offset type in isset or empty in /home/betaitb/public_html/includes/bootstrap.inc on line 748.
* warning: Illegal offset type in /home/betaitb/public_html/includes/bootstrap.inc on line 749.
* warning: Illegal offset type in /home/betaitb/public_html/includes/bootstrap.inc on line 752.

i found this error is coming from

function buddylist_ui_deletebuddy($uid) {
...
      drupal_set_message('This user is not on your @buddylist', buddy_api_translation());
...

i change this to

function buddylist_ui_deletebuddy($uid) {
...
      drupal_set_message(t('This user is not on your @buddylist'), buddy_api_translation());
...

its working now

thanks
Rizqi

Comments

rizqi’s picture

sorry i was wrong, it should be

function buddylist_ui_deletebuddy($uid) {
...
      drupal_set_message(t('This user is not on your @buddylist', buddy_api_translation()));
...

thanks
Rizqi
Professional Drupal Developer
Surabaya, Indonesia

nodestroy’s picture

Status: Needs review » Fixed

thanks, i fixed that in dev, i will updated beta soon

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.