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 e84d1c0 commit c51bcdfCopy full SHA for c51bcdf
1 file changed
modules/stato_servizi/elenco-hooks.php
@@ -53,7 +53,8 @@
53
<tbody>';
54
55
foreach ($hooks as $hook) {
56
- $hook = Hook::find($hook['id']);
+ $hook = Hook::where('id', '=', $hook['id'])->withoutGlobalScopes()->first();
57
+
58
$class = $hook->enabled ? 'success' : 'warning';
59
$nome_tipo = 'hook';
60
0 commit comments