Skip to content
Snippets Groups Projects
Commit a28bfab3 authored by Remy Blom's avatar Remy Blom Committed by Tim van Dijen
Browse files

core/show_metadata: changed => to = (#1247)

The code generated: `$metadata['idp'] => array();` causing an error when I used this to copy the metadata and pasted it in the `metadata/saml20-idp-remote.php` file of another server.
parent 58364fcd
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ $this->includeAtTemplateBase('includes/header.php'); ...@@ -7,7 +7,7 @@ $this->includeAtTemplateBase('includes/header.php');
alt="Copy to clipboard" /> alt="Copy to clipboard" />
</button> </button>
<pre id="metadata"> <pre id="metadata">
$metadata['<?php echo $this->data['m']['metadata-index']; unset($this->data['m']['metadata-index']) ?>'] => <?php $metadata['<?php echo $this->data['m']['metadata-index']; unset($this->data['m']['metadata-index']) ?>'] = <?php
echo htmlspecialchars(var_export($this->data['m'], true)); echo htmlspecialchars(var_export($this->data['m'], true));
?> ?>
</pre> </pre>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment