2011-02-05, 04:11:46
In GSgallery I'm checking to see if the session has been started before I start the session. It would be great if plugin developers that are using the session, will do this as well with a simple
This will ensure this warning notice is never thrown.
Code:
if (!isset($_SESSION))
{
session_start();
}
This will ensure this warning notice is never thrown.