Merge pull request #2526 from annando/issue-2063
Issue 2063: Define the constant SIGTERM if not defined
This commit is contained in:
commit
f43b96e079
4
boot.php
4
boot.php
|
@ -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.
|
* Reverse the effect of magic_quotes_gpc if it is enabled.
|
||||||
|
|
Loading…
Reference in a new issue