diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2011-06-24 11:54:18 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2011-06-24 11:54:18 -0400 |
commit | 1ad8c46833d0f20738323f37d23bbe6e8d2cccfe (patch) | |
tree | b375f338958a1ddfe9e7be34079de25ccac145bb | |
parent | 7852811c2acaa18a7a194c5e22773ff5da35804a (diff) | |
download | ampache-1ad8c46833d0f20738323f37d23bbe6e8d2cccfe.tar.gz ampache-1ad8c46833d0f20738323f37d23bbe6e8d2cccfe.tar.bz2 ampache-1ad8c46833d0f20738323f37d23bbe6e8d2cccfe.zip |
Flush in update_text to improve interface responsiveness
-rw-r--r-- | lib/ui.lib.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index ded371a1..8e8b48c6 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -754,6 +754,8 @@ function update_text($field, $value) { echo '<script type="text/javascript">'; echo "updateText('$field', '$value');"; echo "</script>\n"; + ob_flush(); + flush(); } /** |