Fix typo in pref keys

This commit is contained in:
Duncan Sommerville 2015-11-25 16:08:31 -05:00
parent 3f241b2f25
commit 24f488cac2
1 changed files with 2 additions and 2 deletions

View File

@ -1649,10 +1649,10 @@ class Application_Model_Preference
*/
public static function getBandwidthLimitUpdateTimer() {
return self::getValue("bandwidth_limit_reset_timer");
return self::getValue("bandwidth_limit_update_timer");
}
public static function setBandwidthLimitUpdateTimer() {
self::setValue("bandwidth_limit_reset_timer", microtime(true));
self::setValue("bandwidth_limit_update_timer", microtime(true));
}
}