+ o Fix php-admin to work when topdir contains a symlink (e.g. on Mac)
o Better techniques for locating support files in php-admin -- existing
installations will need to have their conf/config.php altered to set
the variable $confdir
if(!isset($list))
die("no list specified");
-if (dirname(realpath($topdir."/".$list)) != $topdir)
+if (dirname(realpath($topdir."/".$list)) != realpath($topdir))
die("list outside topdir");
if(!is_dir($topdir."/".$list))
if(!isset($list))
die("no list specified");
-if (dirname(realpath($topdir."/".$list)) != $topdir)
+if (dirname(realpath($topdir."/".$list)) != realpath($topdir))
die("list outside topdir");
if(!is_dir($topdir."/".$list))