X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=session.php;fp=session.php;h=c61be6f40bab23af704cd86b04410554ad1ce246;hb=ed5b82e026ec9a6f0fd844ba42fff3f268d949d3;hp=4f1cb67285d25a6b171887bcd77b83dc937a2be5;hpb=b0b28a4587992b92f47abb0429df0e1eaf7f151f;p=wfpl.git diff --git a/session.php b/session.php index 4f1cb67..c61be6f 100644 --- a/session.php +++ b/session.php @@ -18,18 +18,8 @@ # along with wfpl; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -# you'll need this file that calls db_connect() -if(!isset($GLOBALS['wfpl_db_handle'])) { - if(file_exists('db_connect.php')) { - require_once('db_connect.php'); - } elseif(file_exists('code/db_connect.php')) { - require_once('code/db_connect.php'); - } else { - die("session.php requires a file db_connect.php or that you call db_connect() first. See code/wfpl/db.php for more information."); - } -} -# and these database tables: +# you'll need these database tables: # create table wfpl_sessions (id int unique auto_increment, session_key varchar(16), length int, expires int); # create table wfpl_session_data (id int unique auto_increment, session_id int, name varchar(100), value text); # run this command to install/clear the tables: