functions.inc.php:

- _flash_string(): move return outside the foreach so that multiple
  messages can be displayed


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1430 a1433add-5e2c-0410-b055-b7f2511e0802
pull/2/head
Christian Boltz 11 years ago
parent 182485e9d9
commit 8d2e570c03

@ -134,8 +134,8 @@ function _flash_string($type, $string) {
if (is_array($string)) {
foreach ($string as $singlestring) {
_flash_string($type, $singlestring);
return;
}
return;
}
if(!isset($_SESSION['flash'])) {

Loading…
Cancel
Save