# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. --- administrator/components/com_comprofiler/plugin.foundation.php +++ administrator/components/com_comprofiler/plugin.foundation.php @@ -2480,11 +2483,13 @@ ob_end_clean(); } - if ( isset( $outputsDone[$outputId] ) && ( $return == $outputsDone[$outputId] ) ) { - // in case the save function is identical for all HTML editor fields: - $return = null; - } else { - $outputsDone[$outputId] = $return; + if ( $outputId ) { + if ( isset( $outputsDone[$outputId] ) && ( $return == $outputsDone[$outputId] ) ) { + // in case the save function is identical for all HTML editor fields: + $return = null; + } else { + $outputsDone[$outputId] = $return; + } } return $return; }