Hi
i am working on a plugin for localization Movable type to Persian (Farsi) for MT4.3.
for making dates work with Solar date(Persian), i must override format_ts in MT::Util package.
sub init_registry {
my $new_format_ts = sub {
require Farsi::Util;
return Farsi::Util::new_format_ts(@_);
};
no warnings 'redefine';
*MT::Util::format_ts = $new_format_ts;
}
but it worked fine until Six Apart introduced FacebookCommenters plugin(mt4.25), and after install FacebookCommenters my plugin works only in MT Admin, and no change in published blogs dates.
i want to know where is problem, it's from FacebookCommenters or mine?
Reported on Movable Type 4.3
Disable FacebookCommenters and see if it works as expected. If it does, then it is reasonable to blame FacebookCommenters.
thanks Mike.
i disabled FacebookCommenters and everything worked fine, all of Date Tags worked fine!
Ok then, file a bug report to let 6A know that FacebookCommenters is affecting internationalization.
i will, thanks.