Hello, nice plugin!
We are running PHP v7 and get a deprecation note for AsaWidget.php line 7 (v1.0.1 of amazonsimpleadmin):
> Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; WP_Widget_AmazonSimpleAdmin has a deprecated constructor in /srv/www/thegeekgift.com/current/web/app/plugins/amazonsimpleadmin/AsaWidget.php on line 7
This of course is easily fixed by chaniging the PHP 4 style constructor in line 31:
> function WP_Widget_AmazonSimpleAdmin()
to
> function __construct()
Is it possible to release a new version with this fixed or will this cause problems with backwards compatibility somehow? Thank you!