Skip to content

Commit e341c06

Browse files
authored
Merge pull request #4 from JorgenEvens/bug/var_export
[apc] Pass true to var_export instead of htmlentities.
2 parents c414467 + 3344820 commit e341c06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ function sort_list(&$list) {
301301
<?php if( isset( $_GET['action'] ) && $_GET['action'] == 'apcu_view' ): ?>
302302
<div>
303303
<h3>Value for <?=htmlentities('"'.$_GET['selector'].'"')?></h3>
304-
<pre><?=htmlentities(var_export(apcu_fetch(urldecode($_GET['selector']))), true); ?></pre>
304+
<pre><?=htmlentities(var_export(apcu_fetch(urldecode($_GET['selector'])), true)); ?></pre>
305305
</div>
306306
<?php endif; ?>
307307
<?php if( isset( $_GET['action'] ) && $_GET['action'] == 'apcu_select' ): ?>

0 commit comments

Comments
 (0)