Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

Fix for Smarty 3.1.3 and PHP 5.2

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> Bugs
View previous topic :: View next topic  
Author Message
bricef
Smarty n00b


Joined: 19 Oct 2011
Posts: 2

PostPosted: Wed Oct 19, 2011 4:11 pm    Post subject: Fix for Smarty 3.1.3 and PHP 5.2 Reply with quote

I saw in smarty_internal_template that in __get function, the process will check if property exists with property_exists function. In PHP 5.2 this method will fail with protected method§.

I propose this fix :

Code:
            default:
                if (property_exists($this->smarty, $property_name)) {
                    return $this->smarty->$property_name;
                } else {
                    $reflexion = new ReflectionClass($this->smarty);
                    if ($reflexion->hasProperty($property_name)) {
                        return $this->smarty->$property_name;
                    }
                }
Back to top
View user's profile Send private message
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Wed Oct 19, 2011 5:56 pm    Post subject: Reply with quote

Is it possible that you have tried to access the protected Smarty properties like template_dir and other by direct access?

Since Smarty 3.1 you must use the getter/setter methods like
getTemplateDir() setTemplateDir() to access all the directory properties.
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> Bugs All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP