Skip to content

Commit

Permalink
fixed for coding standard (refs #1777)
Browse files Browse the repository at this point in the history
  • Loading branch information
martini2002jp committed Jun 20, 2011
1 parent a7d4d6e commit d53e1dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/action/opMessagePluginMessageActions.class.php
Expand Up @@ -86,7 +86,7 @@ public function executeList(sfWebRequest $request)
$this->form->bind($params);
if ($this->form->isValid())
{
if ($this->messageType == "dust" && (!$request->getParameter('restore')) && $request->getParameter('only_hidden') != true)
if ("dust" === $this->messageType && (!$request->getParameter('restore')) && true != $request->getParameter('only_hidden'))
{
$this->setTemplate("deleteListConfirm");
return sfView::SUCCESS;
Expand Down Expand Up @@ -167,7 +167,7 @@ public function executeDeleteConfirm(sfWebRequest $request)

$this->form = new sfForm();

if ("dust" == $this->messageType)
if ("dust" === $this->messageType)
{
$this->deleteButton = '@deleteDustMessage?id='.$message->getId();
$this->deletedId = $message->getId();
Expand Down

0 comments on commit d53e1dd

Please sign in to comment.