Ignore:
Timestamp:
Jun 12, 2009, 7:55:25 PM (15 years ago)
Author:
Eric
Message:

ConfirmMail.tpl : $U_HOME replaced by $GALLERY_URL only if $GALLERY_URL is empty.
ConfirmMail.php : $GALLERY_URL set.
main.inc.php : Plugin version (2.10.9b) and history update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/ConfirmMail.php

    r3352 r3416  
    5959}
    6060
     61if ( isset($conf['gallery_url']) )
     62        {
     63        $template->assign(
     64                array(
     65                'GALLERY_URL' =>
     66                         isset($page['gallery_url']) ?
     67                              $page['gallery_url'] : $conf['gallery_url'],
     68                 )
     69         );
     70}
     71
     72
    6173$template->pparse('confirm_mail');
    6274include(PHPWG_ROOT_PATH.'include/page_tail.php');
Note: See TracChangeset for help on using the changeset viewer.