Update system_info.php

Remove check for write permissions on import_items.csv file since the file no longer exists and is generated on-the-fly.
This commit is contained in:
objecttothis
2019-06-13 23:52:03 +04:00
committed by GitHub
parent 28b3bc87d4
commit 32a88098b0

View File

@@ -81,15 +81,6 @@
}
clearstatcache();
?><br>
&#187; [import_items.csv:]
<?php
if (is_writable($import)) {
echo ' - ' . substr(sprintf("%o",fileperms($import)),-4) . ' | ' . '<font color="green"> Writable &#x2713 </font>';
} else {
echo ' - ' . substr(sprintf("%o",fileperms($import)),-4) . ' | ' . '<font color="red"> Not Writable &#x2717 </font>';
}
clearstatcache();
?><br>
&#187; [import_customers.csv:]
<?php
if (is_writable($importcustomers)) {