
Strange Error with Backend Buttons
Strange Error with Backend Buttons
See below:


Last edited by plotti on Tue 3. May 2005, 14:58, edited 1 time in total.
oh wtf is that system about:
I've unpacked a clean version of phpwcms 1.2.1
and have found the bug:
it is in:
articlecontent.list.tmpl.php
in about line 151
the code is:
Seems my Webserver doesnt parse shorttags thats bad news for me.
But why dont you use the normal tags instead?
but it should be:
why the fuck is that error there? Did nobody encouter it before?
I've unpacked a clean version of phpwcms 1.2.1
and have found the bug:
it is in:
articlecontent.list.tmpl.php
in about line 151
the code is:
Code: Select all
<td><input type="submit" name="image" value="<? $BL['be_article_cnt_add'] ?>" class="v10" title="<? $BL['be_article_cnt_addtitle'] ?>"></td>
Seems my Webserver doesnt parse shorttags thats bad news for me.
But why dont you use the normal tags instead?
but it should be:
Code: Select all
<td><input type="submit" name="image" value="<?php echo $BL['be_article_cnt_add'] ?>" class="v10" title="<?php echo $BL['be_article_cnt_addtitle'] ?>"></td>