Changeset 155

Show
Ignore:
Timestamp:
01/02/08 13:40:20 (5 years ago)
Author:
d0nut
Message:

allowed indexing of donation form

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • donation/files/lib/form/DonationAddForm.class.php

    r108 r155  
    1313        public $system = ''; 
    1414        public $step = 0; 
     15        public $spider = true; 
    1516         
    1617        /** 
     
    3031                parent::assignVariables(); 
    3132 
    32                 WCF::getTPL()->assign('system', $this->system); 
    33                 WCF::getTPL()->assign('step', $this->step); 
     33                WCF::getTPL()->assign(array( 
     34                        'system' => $this->system,  
     35                        'step' => $this->step, 
     36                        'allowSpidersToIndexThisPage' => $this->spider 
     37                )); 
    3438        } 
    3539