<?php
/**
 * Script: markWasabiComplete.php
 * Version: 1.2 Gemini
 */
require_once("common.php");
require_once("function.php"); // Added this to provide update_row()

// Update any record that was resized but not yet marked as being in Wasabi
// Ensure 'bonstmedia3' is the correct table for your current test
$sql = "UPDATE `bonstmedia3` SET `Wasabi` = 1 WHERE `resize_image` = 1 AND `Wasabi` = 0";
update_row($sql);
?>