When i tried to validate this page http://www.altex.ee/index.php?id=23,24,0,0,1,0 (this is actually a test case i set up to find out where the error comes from) i got:
Line 22, column 127: end tag for element "P" which is not open
...ummary"><p>testing testing 123</p></p></center></td>
The page layout has no values entered at all, the template is empty and contains only {CONTENT}. If I add something after content tag like this {CONTENT}test it will be displayed after the troublesome </p>
<p>testing testing 123</p></p>test
so it seems be an error in the code that generates {CONTENT}. can anyone give me a clue how to get rid of it? im using phpwcms v1.2.3-DEV.
UPDATE:
ok, now i found out that it is the <p class="articleSummary"> closed in the wrong place.
<td valign="top" width="100%">
<center>
<a name="jump24"></a>
<h1>test</h1>
<p class="articleSummary">
<p>
testing testing 1234
</p>
</p>
</center>
</td>
The "<p>testing testing 1234</p>" really is in the summary so technically everything is correct but the outcome is erroneus. So this might be a bug. But if not please let me know what i'm doing wrong...
Thanks
Wrong nesting in article body?
...same here....
Firefox HTML Validator (based on Tidy) produces 0 errors / 2 warnings on
pages with article summary filled out... But only in articles with "text with image" as first content part...
An Example:
http://www.hegg.li/phpwcms/index.php?startseite creates
2 warnings :
-line 60 column 61 - Warning: replacing <p> by <br>
-line 60 column 61 - Warning: inserting implicit <br>
marked orange in code:
<p class="articleSummary"><table width="1%" cellspacing="0" border="0" cellpadding="0" align="left" style="float:left;margin:2px 5px 3px 0;">
<tr><td><img src="content/images/f0e6a19f1480670214c8ec00cfa59db0.jpg" border="0" width="109" height="150" alt="" title=""></td></tr>
</table>Herzlich Willkommen auf meinen Internetseiten.<br /></p>
<br /><div align="justify">Lange Zeit wurde die Domain hegg.li nur als Email-Dom......
On the other page, for example
http://www.hegg.li/phpwcms/index.php?bilderalben
0 error / 0 warnings, but summary text too...
Firefox HTML Validator (based on Tidy) produces 0 errors / 2 warnings on
pages with article summary filled out... But only in articles with "text with image" as first content part...
An Example:
http://www.hegg.li/phpwcms/index.php?startseite creates
2 warnings :
-line 60 column 61 - Warning: replacing <p> by <br>
-line 60 column 61 - Warning: inserting implicit <br>
marked orange in code:
<p class="articleSummary"><table width="1%" cellspacing="0" border="0" cellpadding="0" align="left" style="float:left;margin:2px 5px 3px 0;">
<tr><td><img src="content/images/f0e6a19f1480670214c8ec00cfa59db0.jpg" border="0" width="109" height="150" alt="" title=""></td></tr>
</table>Herzlich Willkommen auf meinen Internetseiten.<br /></p>
<br /><div align="justify">Lange Zeit wurde die Domain hegg.li nur als Email-Dom......
On the other page, for example
http://www.hegg.li/phpwcms/index.php?bilderalben
0 error / 0 warnings, but summary text too...
Greetz, tinoo
Hey guys - If you're still looking for a solution to this issue, I think I have come up with one.
In the file config/phpwcms/conf.template_default.inc.php change the following lines:
Please post if anyone has found a better solution.
In the file config/phpwcms/conf.template_default.inc.php change the following lines:
to this$template_default["article"]["summary_before"] = '<p class="articleSummary">';
$template_default["article"]["summary_after"]= '</p>';
I think the issue is that, as it was coded, you end up nesting Ps within Ps, which I don't think is allowed.$template_default["article"]["summary_before"] = '<div class="articleSummary">';
$template_default["article"]["summary_after"]= '</div>';
Please post if anyone has found a better solution.