Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[solved] Title tags shown instead of being hidden
With 1.1.2 vanilla I have some trouble with my tags bookmarked, whispered and so on.
It gives me :
<li id="Discussion_2" class="Discussion Sticky Bookmarked Read NoNewComments Category_12">
<ul>
<li class="DiscussionType">
<span>DiscussionType</span>TextPrefixTextSticky, TextBookmarkedTextSuffix
</li>
<li class="DiscussionTopic">
<span>Sujet de discussion</span><a href="http://www.mysite.com/dac/comments.php?DiscussionID=2&page=1#Item_10">enquête sur un choc</a>
</li>
So I have these ugly things "TextPrefixTextSticky, TextBookmarkedTextSuffix" shown in front of the title.
I add after that the extension for Discussions filters 2 : http://lussumo.com/addons/index.php?PostBackAction=Download&AddOnID=7 and it change nothing.
I still have this text in front of my titles. An idea?
0
This discussion has been closed.
Comments
To fix, go to your
languages\>language name<\
folder, edit thedefinitions.php
file, and insert this:// Added for Vanilla 1.1 on 2007-02-20 $Context->Dictionary['ErrPostBackKeyInvalid'] = 'There was a problem authenticating your post information.'; $Context->Dictionary['ErrPostBackActionInvalid'] = 'Your post information was not be defined properly.'; // Moved from settings.php $Context->Dictionary['TextWhispered'] = 'Private'; $Context->Dictionary['TextSticky'] = 'Sticky'; $Context->Dictionary['TextClosed'] = 'Closed'; $Context->Dictionary['TextHidden'] = 'Deleted'; $Context->Dictionary['TextSink'] = 'Sink'; $Context->Dictionary['TextBookmarked'] = 'Bookmarked'; $Context->Dictionary['TextPrefix'] = '['; $Context->Dictionary['TextSuffix'] = ']'; // Added for new update checker $Context->Dictionary['CheckingForUpdates'] = 'Checking for updates...'; $Context->Dictionary['ApplicationStatusGood'] = 'Vanilla is up to date.'; $Context->Dictionary['ExtensionStatusGood'] = 'This extension is up to date.'; $Context->Dictionary['ExtensionStatusUnknown'] = 'Extension not found. <a href="http://lussumo.com/docs/doku.php?id=vanilla:administrators:updatecheck">Find out why</a>'; $Context->Dictionary['NewVersionAvailable'] = 'Version \\1 is available. <a href="\\2">Download</a>'; // Altered for new applicant management screen $Context->Dictionary['ApproveForMembership'] = 'Approve'; $Context->Dictionary['DeclineForMembership'] = 'Decline'; $Context->Dictionary['ApplicantsNotes'] = 'Use this form to approve or decline new membership applicants.'; $Context->Dictionary['NoApplicants'] = 'There are currently no applicants to review...';
You can change anything inside the quote marks to the right of the equals sign (=) to match your local language.
Personally, I like it where it is now, although an interface would be nice.
Posted: Saturday, 17 March 2007 at 2:13PM (AEDT)