fix - Phishing Bug... take that spammers!
This commit is contained in:
parent
f5832ee280
commit
c6083606db
2 changed files with 8 additions and 1 deletions
|
|
@ -39,6 +39,7 @@
|
||||||
- fix: Activity list expands outside of edit workflow screen
|
- fix: Activity list expands outside of edit workflow screen
|
||||||
- fix: Thread layout "flat" doesn't stick
|
- fix: Thread layout "flat" doesn't stick
|
||||||
- fix: Rich Edit omitting rows drops subsequent rows
|
- fix: Rich Edit omitting rows drops subsequent rows
|
||||||
|
- fix: Phishing Bug... take that spammers!
|
||||||
|
|
||||||
7.1.4
|
7.1.4
|
||||||
- Template variables in the main Survey Template were out of date in the
|
- Template variables in the main Survey Template were out of date in the
|
||||||
|
|
|
||||||
|
|
@ -139,7 +139,13 @@ sub getValueFromPost {
|
||||||
my $storage = WebGUI::Storage::Image->get($self->session, $id);
|
my $storage = WebGUI::Storage::Image->get($self->session, $id);
|
||||||
if (defined $storage) {
|
if (defined $storage) {
|
||||||
foreach my $file (@{$storage->getFiles}) {
|
foreach my $file (@{$storage->getFiles}) {
|
||||||
$storage->generateThumbnail($file) if ($storage->isImage($file));
|
if ($storage->isImage($file)) {
|
||||||
|
$storage->generateThumbnail($file);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$storage->delete;
|
||||||
|
$id = undef;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue