I got where the error is... it's not dependent on PHP 5.3, as I encountered it with php 5.2.11.
You can correct it in the following way (be sure to grab next version (2.5) coming soon, where I applied the PHP 5.3 corrections, this bugfix and added many new features
)
I don't know the number of the lines I'm going to edit, as I added a lot of lines from v 2.3 to v 2.5, so I'll just tell you where to put things... use the search option to get where you want.
Search for
Code:
if ($voti == 1) {
$ratingtitle = $ratingtitle_S;
}else{
$ratingtitle = $ratingtitle_P;
}
Get rid of it and paste this there:
Code:
if ($params->get('show_rating') == '1') {
if ($voti == 1) {
$ratingtitle = $ratingtitle_S;
}else{
$ratingtitle = $ratingtitle_P;
}
}
Right after this, you should find
Code:
if ($visite == 1) {
$hittitle = $hittitle_S;
}else{
$hittitle = $hittitle_P;
}
Get rid of it too, and paste this:
Code:
if ($params->get('show_hits') == '1') {
if ($visite == 1) {
$hittitle = $hittitle_S;
}else{
$hittitle = $hittitle_P;
}
}
Now those errors should have disappeared