Today i notice that the parsing engine automatically changes the created object after the loop.
Example:
i have the topic object with phone property
div=$topic->phone
behind it i have the $topics list which contains many other $topic objects and show each of item like this:
each topic in topics
// anything in the block
Then the $topic->phone at the beginning will be change to the $topic->phone (the item of $topics)
I can't use the $topic after the loop
Today i notice that the parsing engine automatically changes the created object after the loop. Example: i have the topic object with phone property
div=$topic->phone
behind it i have the
$topics
list which contains many other$topic
objects and show each of item like this:Then the
$topic->phone
at the beginning will be change to the$topic->phone
(the item of$topics
) I can't use the$topic
after the loopI can't use the same object name in the page?!