To participate you must create an account on apostrophenow.com. If you have already done so, click Login.

Changeset 1863

Show
Ignore:
Timestamp:
07/28/2010 07:03:22 PM (6 weeks ago)
Author:
johnnyoffline
Message:

created a secureSuccess.php file in Apostrophe that will work just like the bundled error404Success.php file we include. I also created the execute function in BaseaActions?.class.php. The default symfony secureSuccess was showing up in projects. -- I made this addition to both 1.4 and the trunk

Location:
plugins/apostrophePlugin/branches/1.4
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/apostrophePlugin/branches/1.4/lib/action/BaseaActions.class.php

    r1840 r1863  
    22 
    33/** 
    4  a actions. 
     4 * a actions. 
    55 * 
    6  @package    apostrophe 
    7  @subpackage a 
    8  @author     Your name here 
    9  @version    SVN: $Id: actions.class.php 12479 2008-10-31 10:54:40Z fabien $ 
     6 * @package    apostrophe 
     7 * @subpackage a 
     8 * @author     Your name here 
     9 * @version    SVN: $Id: actions.class.php 12479 2008-10-31 10:54:40Z fabien $ 
    1010 */ 
    1111class BaseaActions extends sfActions 
    1212{ 
    1313 /** 
    14   Executes index action 
     14  * Executes index action 
    1515  * 
    16   @param sfWebRequest $request A request object 
     16  * @param sfWebRequest $request A request object 
    1717  */ 
    1818  public function executeIndex(sfWebRequest $request) 
     
    4747        public function executeError404(sfWebRequest $request) 
    4848        { 
    49  
     49                // Apostrophe Bundled 404  
     50        } 
     51 
     52        public function executeSecure(sfWebRequest $request) 
     53        { 
     54                // Apostrophe Bundled Secure 
    5055        } 
    5156