summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_firmware.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2013-01-03 22:50:26 +0000
committerErmal <eri@pfsense.org>2013-01-03 22:50:47 +0000
commit4111fcf5307829b19b95fbb499addddff46264af (patch)
tree3c9ad48f642698d4ea45b119d8cd66c39ce8a084 /usr/local/www/system_firmware.php
parent24b78825916851bd374c11bd5227dbf140e0ab78 (diff)
downloadpfsense-4111fcf5307829b19b95fbb499addddff46264af.zip
pfsense-4111fcf5307829b19b95fbb499addddff46264af.tar.gz
Always commit the session fast to allow other consumers to proceed to their requests. This unbreaks now the lock up the GUI had allowing only one action from same source per time. Now even if you run a command that blocks indefinitely for example the GUI want lock anymore but allow you to proceed to other actions
Diffstat (limited to 'usr/local/www/system_firmware.php')
-rwxr-xr-xusr/local/www/system_firmware.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/local/www/system_firmware.php b/usr/local/www/system_firmware.php
index 1a54d0d..26ead4b 100755
--- a/usr/local/www/system_firmware.php
+++ b/usr/local/www/system_firmware.php
@@ -213,7 +213,10 @@ include("head.inc");
<form action="system_firmware.php" method="post" enctype="multipart/form-data">
<?php
/* Construct an upload_id for this session */
- $upload_id = "up". $_SESSION['Username'];
+ if (!session_id())
+ $upload_id = uniqid();
+ else
+ $upload_id = session_id();
?>
<input type="hidden" name="UPLOAD_IDENTIFIER" value="<?php echo $upload_id;?>" />
<?php include("fbegin.inc"); ?>
OpenPOWER on IntegriCloud