JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix more paths (s/code/inc/)
[wfpl-cms.git] / admin_images.php
index eebe9ba..8b6e513 100644 (file)
@@ -13,7 +13,7 @@
 # To save results to a database, you'll need to create the cms_images table
 # (the file admin_images.sql should help with this), and create the file
 # 'code/db_connect.php' which calls db_connect() see:
-# code/wfpl/examples/db_connect.php
+# inc/wfpl/examples/db_connect.php
 #
 # if you rename any of the database fields, you'll need to update this:
 
@@ -30,9 +30,8 @@ $GLOBALS['image_thumb_max_height'] = '70';
 $GLOBALS['image_file_name'] = uniqid() . getmypid() . '.jpg'; # comment this out to use uploader's filename
 
 
-require_once('code/wfpl/format.php');
-require_once('code/wfpl/email.php');
-require_once('code/wfpl/upload.php');
+require_once('inc/wfpl/format.php');
+require_once('inc/wfpl/upload.php');
 
 # example: 200x300
 function format_width_height($str) {
@@ -236,12 +235,12 @@ function admin_images_main_form($id = false) {
                        $saved_id = $id;
                } else {
                        db_insert_assoc('cms_images', $data);
-                       message('Image saved.');
+                       message('Image saved. Next time you open a page editor, this image will be availble in the "Insert Image" dialog.');
                        $saved_id = db_auto_id();
                }
 
                # return user to display page where they can see instructions, etc
-               return "./admin_images?id=$saved_id";
+               return "./admin_images";
 
        } elseif($id) {
                # we've recieved an edit id, but no data. So we grab the values to be edited from the database