JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
hide whole menu bar if it's empty
[wfpl-cms.git] / admin_images.php
index 3635b24..3b0fef7 100644 (file)
@@ -15,8 +15,8 @@ $GLOBALS['image_thumb_max_height'] = '70';
 $GLOBALS['image_file_name'] = uniqid() . getmypid() . '.jpg'; # comment this out to use uploader's filename
 
 
-require_once(INC_WFPL . 'format.php');
-require_once(INC_WFPL . 'upload.php');
+require_once(DOCROOT . 'inc/wfpl/format.php');
+require_once(DOCROOT . 'inc/wfpl/upload.php');
 
 # example: 200x300
 function format_width_height($str) {
@@ -37,7 +37,7 @@ function admin_images_get_fields() {
 
        $data['name'] = format_oneline(_REQUEST_cut('name'));
        $data['caption'] = format_oneline(_REQUEST_cut('caption'));
-       $data['sizes'] = format_unix(_REQUEST_cut('sizes'));
+       $data['sizes'] = str_replace(' ', '', strtolower(format_unix(_REQUEST_cut('sizes'))));
 
        if($_FILES['image'] && $_FILES['image']['error'] == 0) {
                $data['image'] = convert_uploaded_image('image', $GLOBALS['upload_directory'] . $GLOBALS['image_file_name'], $GLOBALS['image_max_width'], $GLOBALS['image_max_height'], $GLOBALS['image_thumb_max_width'], $GLOBALS['image_thumb_max_height']);
@@ -55,10 +55,7 @@ function admin_images_get_fields() {
 
 
 function admin_images_main() {
-       if(!logged_in_as_admin()) {
-               $_REQUEST['url'] = this_url();
-               return 'admin_login';
-       }
+       session_auth_must('admin_images');
 
        $id = _REQUEST_cut('edit_id');
        if($id) {