Invalid printf string
-
Hi!
Your plugin includes a translatable string within
sprintf
which does not work.return sprintf(__('A cache purge request has been sent to %s. Please note that it may not work 100% of the time, due to cache rate limiting by your host!', 'wp-optimize'), '<strong>WP Engine</strong>');
The percent symbol must be escaped as
%%
when included within a string that is passed to printf, currently this just returns false instead and as a result this string is never seen by users.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Invalid printf string’ is closed to new replies.