Closed (fixed)
Project:
Flag Friend
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Apr 2009 at 05:16 UTC
Updated:
27 Apr 2009 at 17:20 UTC
Jump to comment: Most recent file
Comments
Comment #1
dicreat commentedI found another one:
$link = str_replace('Approve', 'Deny', str_replace('unflag', 'unfriend', $flag->theme('unflag', $uid)));must be:
$link = str_replace(t('Approve'), t('Deny'), str_replace('unflag', 'unfriend', $flag->theme('unflag', $uid)));and string:
$link = str_replace('Approve', 'Deny', $flag->theme('unflag', $uid));must be:
$link = str_replace(t('Approve'), t('Deny'), $flag->theme('unflag', $uid));Patch attached.
Comment #2
dicreat commented...and one more:
Comment #3
sirkitree commentedThanks! Committed http://drupal.org/cvs?commit=196258