This is new 3.0.1 wordpress install. Wysiwyg is turned off in profile.
Installed and active plugins:
– Akismet
– CodeColorer
– Configure SMTP
– Unfancy Quote
Not Active:
– WordPress Wiki
And here is new bug:
I use CodeColorer for code highlight, and if I open page as a single it works fine, but when in index with more tag it adds tags to my code. Here is page with example:
https://dev.androidteam.ru/
code on index page with problem:
private ArrayList<view> getViewChildsList(Object o) {
ArrayList</view><view> views = new ArrayList</view><view>();
code on single page, shows correct:
private ArrayList<View> getViewChildsList(Object o) {
ArrayList<View> views = new ArrayList<View>();
If I remove <!--more-->
everything works fine: bold text, syntax highlight, but if I add it back there are bugs described above.