HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/subdomains/Phone_directories/templates/3rdParty/pla/tools/unserialize.php
<?php

require '../lib/common.php';

echo '<head><link type="text/css" rel="stylesheet" href="../htdocs/css/style.css" /></head>';
echo '<body>'."\n";
$index = get_request('index','REQUEST');
if (! isset($_SESSION['backtrace'][$index]))
	die('No backtrace available...?');

$line = $_SESSION['backtrace'][$index];
echo '<table class="result_table">';
printf('<tr class="hightlight"><td colspan="2"><b><small>%s</small></b></td><td>%s (%s)</td></tr>',
	_('File'),isset($line['file']) ? $line['file'] : $last['file'],isset($line['line']) ? $line['line'] : '');

printf('<tr><td>&nbsp;</td><td><b><small>%s</small></b></td>',
	_('Function'),$line['function']);

echo '<td><small><pre>';
print_r($line['args']);
echo '</pre></small></td>';

echo '</tr>';
echo '</table>';
echo '</body>';
?>