Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
$Definition['Don't announce'] = 'Don't sticky'; Locale.php issue
PFAFF
✭
I have this in my Locale.php file:
$Definition['Announcement'] = 'Stickied';
$Definition['Announce'] = 'Sticky';
$Definition['Unannounce'] = 'UnSticky';
$Definition['Announce...'] = 'Sticky...';
$Definition['Where do you want to announce this discussion?'] = 'Where do you want to sticky this discussion?';
But, I can't put 'Don't announce' because of the apostrophe. Is there a way to get around this?
Thanks!
Tagged:
0
Comments
Yes, you can escape it with a backslash
\'
or use double quotes.http://php.net/manual/en/language.types.string.php
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Perfect! And, good to know! Thanks so much!