[pLog-svn] r2462 - plog/branches/plog-1.0.2/templates/summary

Mark Wu markplace at gmail.com
Sun Sep 11 16:00:21 GMT 2005


Sorry, I forgot to metion the code is under
/class/action/addcommentaction.class.php

Mark 

> -----Original Message-----
> From: Mark Wu [mailto:markplace at gmail.com] 
> Sent: Sunday, September 11, 2005 11:20 PM
> To: 'plog-svn at devel.plogworld.net'
> Subject: RE: [pLog-svn] r2462 - 
> plog/branches/plog-1.0.2/templates/summary
> 
> Hi Jon:
> 
> I think we can change
> 
> $this->_commentTopic = trim($this->_request->getValue( 
> "commentTopic" ));
> 
> To
> 
> $this->_commentTopic = 
> trim(Textfilter::filterAllHTML($this->_request->getValue( 
> "commentTopic" )));
> 
> It will be eaiser. Or we have to modify "All" template sets, 
> that will be a big challenge for us :P
> 
> Mark
> 
> > -----Original Message-----
> > From: plog-svn-bounces at devel.plogworld.net
> > [mailto:plog-svn-bounces at devel.plogworld.net] On Behalf Of 
> > jondaley at devel.plogworld.net
> > Sent: Sunday, September 11, 2005 7:32 PM
> > To: plog-svn at devel.plogworld.net
> > Subject: [pLog-svn] r2462 - 
> plog/branches/plog-1.0.2/templates/summary
> > 
> > Author: jondaley
> > Date: 2005-09-11 11:32:08 +0000 (Sun, 11 Sep 2005) New 
> Revision: 2462
> > 
> > Modified:
> >    plog/branches/plog-1.0.2/templates/summary/post.template
> >    plog/branches/plog-1.0.2/templates/summary/summary.template
> > Log:
> > remove html tags from comment Topic, in all cases.  Remove 
> html from 
> > postTopic, in admin interface.  This doesn't entirely solve the 
> > problem, because if users want to allow <a 
> href=blah>...</a> in their 
> > comments (and plog does that by
> > default) then the user is also allowed to have the iframe attribute 
> > tag stuff.  A fair amount of discussion on the strip_tags 
> section of 
> > php.net
> > 
> > Modified: plog/branches/plog-1.0.2/templates/summary/post.template
> > ===================================================================
> > --- plog/branches/plog-1.0.2/templates/summary/post.template	
> > 2005-09-11 11:04:03 UTC (rev 2461)
> > +++ plog/branches/plog-1.0.2/templates/summary/post.template	
> > 2005-09-11 11:32:08 UTC (rev 2462)
> > @@ -1,6 +1,6 @@
> >      {assign var="blog" value=$post->getBlogInfo()}
> >  	{assign var="request" value=$blog->getBlogRequestGenerator()}
> > -    <h5>{$post->getTopic()}</h5>
> > +    <h5>{$post->getTopic()|strip_tags}</h5>
> >      <div class="subtitle">
> >          {$locale->tr("blog")} <a
> > href="{$request->blogLink()}">{$blog->getBlog()}</a>
> >      </div>
> > @@ -19,4 +19,4 @@
> >          <img src="imgs/comment.png" width="11" height="10" 
> > alt="{$locale->tr("comments")}" />&nbsp;
> >          <a
> > href="{$request->postPermalink($post)}#comments">{if
> > $post->getTotalComments() eq 0}{$locale->tr("comment on 
> > this")}{else}{$post->getTotalComments()}
> > {$locale->tr("comments")|capitalize}{/if}</a>
> >          <br style="clear: both;" />
> > -    </div>
> > \ No newline at end of file
> > +    </div>
> > 
> > Modified: 
> plog/branches/plog-1.0.2/templates/summary/summary.template
> > ===================================================================
> > --- 
> > plog/branches/plog-1.0.2/templates/summary/summary.template	
> > 2005-09-11 11:04:03 UTC (rev 2461)
> > +++ 
> > plog/branches/plog-1.0.2/templates/summary/summary.template	
> > 2005-09-11 11:32:08 UTC (rev 2462)
> > @@ -1,6 +1,6 @@
> >  {include file="summary/header.template"}
> >   {foreach from=$posts item=post}
> > -   <h3>{$post->getTopic()}</h3>
> > +   <h3>{$post->getTopic()|strip_tags}</h3>
> >  {assign var="postDate" value=$post->getDateObject()} {assign 
> > var="postOwner" value=$post->getUserInfo()}  <span 
> > class="date">{$postOwner->getUsername()} | 
> > {$locale->formatDate($postDate,"%d %B, %Y %H:%M")}</span>
> > 
> > _______________________________________________
> > pLog-svn mailing list
> > pLog-svn at devel.plogworld.net
> > http://devel.plogworld.net/mailman/listinfo/plog-svn




More information about the pLog-svn mailing list