Skip to content
Snippets Groups Projects
Commit 7e55f796 authored by Bjoern Pedersen's avatar Bjoern Pedersen Committed by Georg Ringer
Browse files

[BUGFIX] t3lib_extjs_ExtDirectDebug::__destruct() missing

In the Developer Logs there are complaints about the missing destructor.
Fix: add it.

Change-Id: I42595a7ebbc3c941bf64bc0699ff908059c107bb
Resolves: #25278
Reviewed-on: http://review.typo3.org/1092
Reviewed-by: Markus Klein
Tested-by: Markus Klein
Reviewed-by: Stefan Neufeind
Tested-by: Stefan Neufeind
Reviewed-by: Oliver Klee
Reviewed-by: Georg Ringer
Tested-by: Georg Ringer
parent b300d170
Branches
Tags
No related merge requests found
......@@ -39,6 +39,22 @@ class t3lib_extjs_ExtDirectDebug {
*/
protected $debugMessages = array();
/**
* destructor
*
* Currently empty, but automatically registered and called during
* ExtDirect shutdown.
*
* @see http://bugs.typo3.org/view.php?id=17891
* @see http://forge.typo3.org/issues/25278
*/
public function __destruct() {
/* currently empty */
}
/**
* Adds a new message of any data type to the internal debug message array.
*
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment