Source for file lookup_newsletter_edition_inc.php
Documentation is available at lookup_newsletter_edition_inc.php
* Copyright (c) 2005 bitweaver.org
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
* @author spider <spider@steelsun.com>
require_once( NEWSLETTERS_PKG_PATH. 'BitNewsletterEdition.php' );
if( empty( $gContent ) || !is_object( $gContent ) || !$gContent->isValid() ) {
$editionId = !empty( $_REQUEST['edition_id'] ) ? $_REQUEST['edition_id'] : NULL;
$conId = !empty( $_REQUEST['content_id'] ) ? $_REQUEST['content_id'] : NULL;
$nlId = !empty( $_REQUEST['nl_id'] ) ? $_REQUEST['nl_id'] : NULL;
$gBitSmarty->assign_by_ref( 'gContent', $gContent );
|