0
1
Fork 0

access version fixes

This commit is contained in:
Juan Ferrer 2020-01-23 14:50:35 +01:00
parent 5a8b0447dd
commit c4ad0d77e0
3 changed files with 4 additions and 4 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.407.04) stable; urgency=low hedera-web (1.407.05) stable; urgency=low
* Initial Release. * Initial Release.

View File

@ -1,6 +1,6 @@
{ {
"name": "hedera-web", "name": "hedera-web",
"version": "1.407.04", "version": "1.407.05",
"description": "Verdnatura web page", "description": "Verdnatura web page",
"license": "GPL-3.0", "license": "GPL-3.0",
"repository": { "repository": {

View File

@ -66,8 +66,8 @@ class AccessVersion extends Vn\Web\JsonRequest {
rename($moduleFile['tmp_name'], $archiveFullPath); rename($moduleFile['tmp_name'], $archiveFullPath);
chmod($archiveFullPath, 0644); chmod($archiveFullPath, 0644);
@unlink ($headFile); @unlink($headFile);
symlink($headFile, $archiveRelPath); symlink($archiveRelPath, $headFile);
return TRUE; return TRUE;
} }