From: Iain Patterson Date: Mon, 13 May 2013 08:35:56 +0000 (-0400) Subject: Make delete links non-printing. X-Git-Tag: 2013-05-13~20 X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;ds=sidebyside;h=ab38fc2f4799078f99fd89629979192a56ebb900;p=readifood.git Make delete links non-printing. Delete links don't need to be shown in hardcopies. --- diff --git a/propel/build/classes/ReadifoodObject.php b/propel/build/classes/ReadifoodObject.php index 17efec8..9993239 100644 --- a/propel/build/classes/ReadifoodObject.php +++ b/propel/build/classes/ReadifoodObject.php @@ -23,7 +23,7 @@ } function getDeleteLink() { - return $this->getActionLink("delete", "Delete", "delete"); + return $this->getActionLink("delete", "Delete", array("delete", "noprint")); } }