SF Bug #2853633 - activating hooks gives error undefined constant DEBUG_ENABLE
This commit is contained in:
parent
a3ac658756
commit
242d06673a
@ -117,7 +117,7 @@ function run_hook($hook_name,$args) {
|
|||||||
* @param rollback_function Name of the php rollback function called upon failure.
|
* @param rollback_function Name of the php rollback function called upon failure.
|
||||||
*/
|
*/
|
||||||
function add_hook($hook_name,$hook_function,$priority=0,$rollback_function=null) {
|
function add_hook($hook_name,$hook_function,$priority=0,$rollback_function=null) {
|
||||||
if (DEBUG_ENABLED && (($fargs=func_get_args())||$fargs='NOARGS'))
|
if (defined('DEBUG_ENABLED') && DEBUG_ENABLED && (($fargs=func_get_args())||$fargs='NOARGS'))
|
||||||
debug_log('Entered (%%)',257,0,__FILE__,__LINE__,__METHOD__,$fargs);
|
debug_log('Entered (%%)',257,0,__FILE__,__LINE__,__METHOD__,$fargs);
|
||||||
|
|
||||||
# First, see if the hook function exists.
|
# First, see if the hook function exists.
|
||||||
@ -153,7 +153,7 @@ function add_hook($hook_name,$hook_function,$priority=0,$rollback_function=null)
|
|||||||
* procedures that call this function as a rollback will be removed.
|
* procedures that call this function as a rollback will be removed.
|
||||||
*/
|
*/
|
||||||
function remove_hook($hook_name,$hook_function,$priority,$rollback_function) {
|
function remove_hook($hook_name,$hook_function,$priority,$rollback_function) {
|
||||||
if (DEBUG_ENABLED && (($fargs=func_get_args())||$fargs='NOARGS'))
|
if (defined('DEBUG_ENABLED') && DEBUG_ENABLED && (($fargs=func_get_args())||$fargs='NOARGS'))
|
||||||
debug_log('Entered (%%)',257,0,__FILE__,__LINE__,__METHOD__,$fargs);
|
debug_log('Entered (%%)',257,0,__FILE__,__LINE__,__METHOD__,$fargs);
|
||||||
|
|
||||||
if (array_key_exists($hook_name,$_SESSION[APPCONFIG]->hooks)) {
|
if (array_key_exists($hook_name,$_SESSION[APPCONFIG]->hooks)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user