Issue 2063: Define the constant SIGTERM if not defined
This commit is contained in:
parent
3ba026b501
commit
22676f7e21
1 changed files with 4 additions and 0 deletions
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.
|
||||
|
|
Loading…
Reference in a new issue