We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1028cbf commit 28fc3afCopy full SHA for 28fc3af
www/home.php
@@ -85,12 +85,8 @@
85
$is_free = !is_null($user) && $user->isFree();
86
$is_anon = is_null($user) || $user->isAnon();
87
88
-if ($is_free) {
89
- $max_runs = Util::getSetting('max_runs_free_user', 1);
90
-}
91
-
92
$is_logged_in = Util::getSetting('cp_auth') && (!is_null($request_context->getClient()) && $request_context->getClient()->isAuthenticated());
93
-$remaining_runs = !is_null($user) ? $user->getRemainingRuns() : 150;
+$remaining_runs = !is_null($user) ? $user->getRemainingRuns() : 300;
94
$hasNoRunsLeft = $is_logged_in ? (int)$remaining_runs <= 0 : false;
95
96
$Timers->endTimer('status');
0 commit comments