From 4ca1c10fb89832c0e43fe80911e5499fa56e55ba Mon Sep 17 00:00:00 2001
From: Mikael Nordfeldth <mmn@hethane.se>
Date: Mon, 23 Sep 2013 22:10:26 +0200
Subject: [PATCH] IMPORTANT: 'GNUSOCIAL' defined, or daemons wouldn't work

Apparently I forgot scripts/commandline.inc in the commit for 'GNUSOCIAL'
definition 4c6803a0540243c2ae1e36b6fafc8728e69473cc.

define('GNUSOCIAL', true); indicates that we're running GNUSOCIAL, and that
one should be aware of this if applying patches.
---
 scripts/commandline.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/commandline.inc b/scripts/commandline.inc
index a682f4489e..d7ee158801 100644
--- a/scripts/commandline.inc
+++ b/scripts/commandline.inc
@@ -26,7 +26,8 @@ if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
     exit();
 }
 
-define('STATUSNET', true);
+define('GNUSOCIAL', true);
+define('STATUSNET', true); //compatibility
 
 // Set various flags so we don't time out on long-running processes
 
-- 
2.39.5