saimod_mail/sql/EMAIL_IMAGE_CLONE.php
Ulf Gebhardt ea19cf8d71
php8.3 fix
replace all get_class() calls without argument which is depected from
php 8.3 onward
2024-11-19 22:40:17 +01:00

10 lines
311 B
PHP

<?php
namespace SQL;
class EMAIL_IMAGE_CLONE extends \SYSTEM\DB\QP {
public static function get_class(){return static::class;}
public static function mysql(){return
'INSERT INTO email_image (`email`,`name`,`file`,`mime`)
(SELECT ? as email, name, file, mime FROM email_image WHERE email = ?);';
}
}