diff --git a/html/includes/common/generic-image.inc.php b/html/includes/common/generic-image.inc.php
index 91f80ac1b3..8b6f59ffc0 100644
--- a/html/includes/common/generic-image.inc.php
+++ b/html/includes/common/generic-image.inc.php
@@ -58,5 +58,11 @@ if( defined('show_settings') || empty($widget_settings) ) {
}
else {
$widget_settings['title'] = $widget_settings['image_title'];
+ if (strstr($widget_settings['image_url'], '?')) {
+ $widget_settings['image_url'] .= "&".mt_rand();
+ }
+ else {
+ $widget_settings['image_url'] .= "?".mt_rand();
+ }
$common_output[] = '
';
}