jayp1 Posted September 24, 2013 Share Posted September 24, 2013 Hi I have this problem when seeing products page : Warning: Function s() is deprecated in /home/h3ll0/public_html/modules/productadditionaltabs/productadditionaltabs.php on line 661in /home/h3ll0/public_html/classes/Tools.php on line 1845Warning: Function s() is deprecated in /home/h3ll0/public_html/modules/productadditionaltabs/productadditionaltabs.php on line 684in /home/h3ll0/public_html/classes/Tools.php on line 1845Warning: Function s() is deprecated in /home/h3ll0/public_html/modules/productadditionaltabs/productadditionaltabs.php on line 696in /home/h3ll0/public_html/classes/Tools.php on line 1845Warning: Function s() is deprecated in /home/h3ll0/public_html/modules/productadditionaltabs/productadditionaltabs.php on line 661in /home/h3ll0/public_html/classes/Tools.php on line 1845Warning: Function s() is deprecated in /home/h3ll0/public_html/modules/productadditionaltabs/productadditionaltabs.php on line 723in /home/h3ll0/public_html/classes/Tools.php on line 1845Warning: Function s() is deprecated in /home/h3ll0/public_html/modules/productadditionaltabs/productadditionaltabs.php on line 735in /home/h3ll0/public_html/classes/Tools.php on line 1845 Any help? Thanks Link to comment Share on other sites More sharing options...
PascalVG Posted September 24, 2013 Share Posted September 24, 2013 Seems that it uses this function: (from classes.db.Db.php) /** * @deprecated 1.5.0 */ public static function s($sql, $use_cache = true) { Tools::displayAsDeprecated(); return Db::getInstance()->executeS($sql, true, $use_cache); } It warns that function s(...) should not be used anymore. then it calls the function that can be used instead. You could change it into the called upon function directly and so skip the warning. My 2 cents, pascal Link to comment Share on other sites More sharing options...
vekia Posted September 24, 2013 Share Posted September 24, 2013 can you show how the line 696 looks like? Warning: Function s() is deprecated in /home/h3ll0/public_html/modules/productadditionaltabs/productadditionaltabs.php on line 696 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now