diff options
author | jim-p <jimp@netgate.com> | 2019-04-15 11:12:40 -0400 |
---|---|---|
committer | jim-p <jimp@netgate.com> | 2019-05-10 16:19:41 -0400 |
commit | c6d54302b9b47fa1322b51b1f81570b1162a0289 (patch) | |
tree | 451d78a09cf52556034675e70da52d4a20bdd049 | |
parent | ff32782af71967496dabd9f715d9bdbe1951f7f1 (diff) | |
download | pfsense-c6d54302b9b47fa1322b51b1f81570b1162a0289.zip pfsense-c6d54302b9b47fa1322b51b1f81570b1162a0289.tar.gz |
Fix another typo
(cherry picked from commit a0930ca608eb6b22b256c95ab2d829932b085f82)
-rw-r--r-- | src/usr/local/www/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/index.php b/src/usr/local/www/index.php index 51e9bf7..ca87039 100644 --- a/src/usr/local/www/index.php +++ b/src/usr/local/www/index.php @@ -670,7 +670,7 @@ events.push(function() { // results back to the widget's callback function function executewidget() { if (ajaxspecs.length > 0) { - var freq = ajaxspecs[ajaxidx].freq; // widget can specifify it should be called freq times around the loop + var freq = ajaxspecs[ajaxidx].freq; // widget can specify it should be called freq times around the loop if (!ajaxmutex) { if (((ajaxcntr % freq) === 0) && (typeof ajaxspecs[ajaxidx].callback === "function" )) { |