From 4312ac809cc7063615819f0301f1a5e128f7b3af Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Thu, 28 May 2015 04:34:31 -0400 Subject: [PATCH] Fix blank image in html_signature when saving identity changes (#1490412) --- program/steps/settings/save_identity.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/steps/settings/save_identity.inc b/program/steps/settings/save_identity.inc index 72c2597..1fc1040 100644 --- a/program/steps/settings/save_identity.inc +++ b/program/steps/settings/save_identity.inc @@ -208,7 +208,7 @@ global $RCMAIL; $offset = 0; - $regexp = '/\s(poster|src)\s*=\s*[\'"]*\S+upload-display\S+file=rcmfile([0-9]+)[\s\'"]*/'; + $regexp = '/\s(poster|src)\s*=\s*[\'"]*\S+upload-display\S+file=rcmfile(\w+)[\s\'"]*/'; while (preg_match($regexp, $html, $matches, 0, $offset)) { $file_id = $matches[2]; -- Gitblit v1.9.1