Query failed:
SELECT 
                    

                    e.id,
                    e.title,
                    e.timestamp,
                    e.comments,
                    e.exflag,
                    e.authorid,
                    e.trackbacks,
                    e.isdraft,
                    e.allow_comments,
                    e.last_modified,

                    a.realname AS author,
                    a.username AS loginname,
                    a.email
                     , e.body, e.extended
                     
                FROM
                    6_entries AS e
                    LEFT JOIN 6_authors a
                        ON e.authorid = a.authorid
                    LEFT JOIN 6_entrycat ec
                        ON e.id = ec.entryid
                    LEFT JOIN 6_category c
                        ON ec.categoryid = c.categoryid
                    INNER JOIN 6_entrytags AS entrytags ON (e.id = entrytags.entryid) 
                    WHERE isdraft = 'false' AND e.timestamp <= 1328943600 AND entrytags.tag = 'plateo gmbh & co˙ kg'  
                     GROUP BY e.id
                     
                     ORDER BY timestamp DESC
                      LIMIT 13
/ Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='