mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 09:04:26 +02:00
sQL: No "NOT NULL" on text fields.
This commit is contained in:
parent
014fc5dccb
commit
6df40b1161
3 changed files with 208 additions and 208 deletions
|
@ -20,8 +20,8 @@ class dbm {
|
|||
foreach ($r AS $process) {
|
||||
$state = trim($process["State"]);
|
||||
|
||||
// Filter out all idle processes
|
||||
if (!in_array($state, array("", "init", "statistics"))) {
|
||||
// Filter out all non blocking processes
|
||||
if (!in_array($state, array("", "init", "statistics", "updating"))) {
|
||||
++$states[$state];
|
||||
++$processes;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue