Interceptor Forum

Normale Version: Anpassung: MyDownloads 3.0.2 - Error uploading without image
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Fehler beim Upload ohne Vorschaubild in MyDownloads 3.0.2


Fehler
Code:
NOTICE: PHP message: PHP Fatal error:  Uncaught mysqli_sql_exception: Field 'preview' doesn't have a default value in


suche in /inc/plugins/mydownloads.php

Code:
        // add a download to the category's stats
        $db->update_query('mydownloads_categories', array('downloads' => $cat['downloads']+1), 'cid='.$cat['cid']);

        $id = $db->insert_query("mydownloads_downloads", $insert_array);
    }

ersetze mit

Code:
        // add a download to the category's stats
        $db->update_query('mydownloads_categories', array('downloads' => $cat['downloads']+1), 'cid='.$cat['cid']);
        if (!isset($insert_array['preview'])) {
            $insert_array['preview'] = '';
        }
        $id = $db->insert_query("mydownloads_downloads", $insert_array);
    }