Merge pull request #2526 from annando/issue-2063

Issue 2063: Define the constant SIGTERM if not defined
This commit is contained in:
Tobias Diekershoff 2016-05-23 06:11:17 +02:00
commit f43b96e079
1 changed files with 4 additions and 0 deletions

View File

@ -387,6 +387,10 @@ define ( 'GRAVITY_COMMENT', 6);
/* @}*/
// Normally this constant is defined - but not if "pcntl" isn't installed
if (!defined("SIGTERM"))
define("SIGTERM", 15);
/**
*
* Reverse the effect of magic_quotes_gpc if it is enabled.