HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/crowdandsafety/www/wp-content/plugins/cornerstone/includes/integration/Api/AdminNotices.php
<?php

/**
 * XML Change Error notice
 */
add_action( 'admin_notices', function () {
  if (!cs_stack_get_value('cs_api_xml_legacy_mode')) {
    return;
  }


  $message = __( 'External REST API XML parser has added a breaking change and you are running legacy mode. If you are not using any XML in your External API, go into the Theme Options and disable "XML Legacy Mode". Please see the guide here on how to migrate your usage of XML <a href="https://theme.co/docs/external-api-xml-change" target="_blank" rel="noreferrer noopener">here</a>', 'cornerstone' );

  echo "
    <div class='error notice'>
        <p>$message</p>
    </div>
  ";

});