Signed-off-by: Roland Häder <roland@mxchange.org>
case 'activate': // Do stuff when admin activates this extension
// Is the required PHP extension 'recode' loaded?
- if (!extension_loaded('recode')) {
+ if (!isPhpExtensionLoaded('recode')) {
// Required extension not loaded
enableExtensionReportingFailure();
} // END - if
// Parses the XML content
function parseXmlData ($content) {
// Is there recode?
- if (!extension_loaded('recode')) {
+ if (!isPhpExtensionLoaded('recode')) {
// No fallback ATM
reportBug(__FUNCTION__, __LINE__, 'PHP extension recode is missing. Please install it.');
} // END - if