dwoo-project / dwoo

[UNMAINTAINED] php template engine
http://dwoo.org
GNU Lesser General Public License v3.0
167 stars 58 forks source link

Can not use same function more than one time in same template #30

Open payalshah15 opened 9 years ago

payalshah15 commented 9 years ago

I am assigning " test string " value to myVar variable and printing it. {assign 'test string' myVar} {$myVar}

I want to create an array user using assign and print its value. {assign array(name="Bob" gender="male") user} {$user.name} is {$user.gender}*}

I want to use above both code in one template which is not working.

Error is :- Cannot redeclare Dwoo\Plugins\Functions\functionAssignCompile() .....