GetSimple Support Forum

Full Version: cookie_functions.php Path to configuration.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In order for me to include the common.php in a plugin file. The file cookie_functions.php need to have the path modified so that it uses the constant for the admin/inc path.
From this
Code:
require_once('inc/configuration.php');

to this.
Code:
require_once(GSADMININCPATH.'configuration.php');


Chris do you think you can include this change in the latest release if GS?
Added to the issues list, issue 57.

On the wrong computer at the moment, but I’ll get the cookie_functions.php change committed to the SVN tomorrow. Guess that means the change will get included in the next release ;-)
Cool thanks!
Just letting you know that cookie_functions.php has been updated in the last (r167) SVN version. Let us know if you need more changes like this, the usage of the constants is something that still needs implementing in the core and pointers just make it happen quicker.
Zegnåt Wrote:Just letting you know that cookie_functions.php has been updated in the last (r167) SVN version. Let us know if you need more changes like this, the usage of the constants is something that still needs implementing in the core and pointers just make it happen quicker.

Great thanks! If I bump in to other I will deff let you know.