|
@@ -8,7 +8,7 @@ if(isset($_GET["bkend"])){
|
|
|
foreach ($intdirs as &$intdir) {
|
|
|
preg_match('/storage\/([^\/]*)/', $intdir, $out_storage);
|
|
|
$tmp = [];
|
|
|
- $tmp["name"] = "Internal - ".hex2bin($out_storage[1]);
|
|
|
+ $tmp["name"] = "Internal - ".$out_storage[1];
|
|
|
$tmp["dir"] = "../../../Photo/".$intdir."/";
|
|
|
$tmp["drive"] = "internal";
|
|
|
$tmp["storage"] = $out_storage[1];
|
|
@@ -24,7 +24,7 @@ if(isset($_GET["bkend"])){
|
|
|
preg_match('/\/media\/([^\/]*)\//', $extdir, $out_storage);
|
|
|
preg_match('/Photo\/([^\/]*)/', $extdir, $out_storage);
|
|
|
$tmp = [];
|
|
|
- $tmp["name"] = $out_storage[1]." - ".hex2bin($out_storage[1]);
|
|
|
+ $tmp["name"] = $out_storage[1]." - ".$out_storage[1];
|
|
|
$tmp["dir"] = $extdir."/";
|
|
|
$tmp["drive"] = $out_storage[1];
|
|
|
$tmp["storage"] = $out_storage[1];
|