JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
db_connect.php can now be in code/
authorJason Woofenden <jason183@herkamire.com>
Mon, 2 Apr 2007 22:46:16 +0000 (18:46 -0400)
committerJason Woofenden <jason183@herkamire.com>
Mon, 2 Apr 2007 22:46:16 +0000 (18:46 -0400)
metaform/template.php
session.php

index adf4803..5ebf77c 100644 (file)
@@ -72,8 +72,12 @@ function ~form_name~() {
                if("you're happy with the POSTed values") {
                        # to enable saving to a database, create a file called 'db_connect.php'
                        # see: code/wfpl/examples/db_connect.php
-                       if(file_exists('db_connect.php')) {
-                               require_once('db_connect.php');
+                       if(file_exists('db_connect.php') || file_exists('code/db_connect.php')) {
+                               if(file_exists('db_connect.php') {
+                                       require_once('db_connect.php');
+                               } else {
+                                       require_once('code/db_connect.php');
+                               }
                                if($edit_id) {<!--~image_db start~-->
                                        # uploading nothing means leaving it as is.
                                        if(!$~name~ && $delete_~name~ != 'Yes') {
index 07b759a..7f5d52e 100644 (file)
 
 # you'll need this file that calles db_connect()
 if(!isset($GLOBALS['wfpl_db_handle'])) {
-       require_once('db_connect.php');
+       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: