Fixed octal .ics permissions + tesseract before unlink() image

This commit is contained in:
xdrm-brackets 2017-09-15 23:35:34 +02:00
parent ea735c9630
commit 325224d40d
2 changed files with 11 additions and 7 deletions

View File

@ -296,10 +296,6 @@
} }
/* Remove file */
unlink($link);
/* [2] Apply Tesseract /* [2] Apply Tesseract
=========================================================*/ { =========================================================*/ {
@ -313,6 +309,9 @@
/* (2) Manage error */ /* (2) Manage error */
}catch(\Exception $e){ }catch(\Exception $e){
// Remove file //
unlink($link);
return [ 'name' => null, 'location' => null ]; return [ 'name' => null, 'location' => null ];
} }
@ -324,7 +323,10 @@
/* [3] End procedure /* [3] End procedure
=========================================================*/ =========================================================*/
/* (1) Return read value */ /* (1) Remove file */
unlink($link);
/* (2) Return read value */
return $read; return $read;
} }

View File

@ -60,7 +60,7 @@
$d_name = $this->d_data[1]; $d_name = $this->d_data[1];
file_put_contents(__ROOT__."/tmp/$d_id.ics", "BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//xdrm.io//NONSGML v1.0//EN\nMETHOD:PUBLISH\nX-WR-CALNAME: UPPA $d_name\n"); file_put_contents(__ROOT__."/tmp/$d_id.ics", "BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//xdrm.io//NONSGML v1.0//EN\nMETHOD:PUBLISH\nX-WR-CALNAME: UPPA $d_name\n");
\chmod(__ROOT__."/tmp/$d_id.ics", 0775); \chmod(__ROOT__."/tmp/$d_id.ics", 00775);
/* (1) Browse each date /* (1) Browse each date
---------------------------------------------------------*/ ---------------------------------------------------------*/
@ -97,7 +97,7 @@
foreach($this->config->getDiplomes() as $d_id=>$d_name){ foreach($this->config->getDiplomes() as $d_id=>$d_name){
file_put_contents(__ROOT__."/tmp/$d_id.ics", "BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//xdrm.io//NONSGML v1.0//EN\nMETHOD:PUBLISH\nX-WR-CALNAME:UPPA $d_name\n"); file_put_contents(__ROOT__."/tmp/$d_id.ics", "BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//xdrm.io//NONSGML v1.0//EN\nMETHOD:PUBLISH\nX-WR-CALNAME:UPPA $d_name\n");
\chmod(__ROOT__."/tmp/$d_id.ics", 775); \chmod(__ROOT__."/tmp/$d_id.ics", 0775);
/* (1) Browse each date /* (1) Browse each date
---------------------------------------------------------*/ ---------------------------------------------------------*/
@ -114,10 +114,12 @@
/* (4) Add to file */ /* (4) Add to file */
file_put_contents(__ROOT__."/tmp/$d_id.ics", $EVENTS, FILE_APPEND); file_put_contents(__ROOT__."/tmp/$d_id.ics", $EVENTS, FILE_APPEND);
\chmod(__ROOT__."/tmp/$d_id.ics", 0775);
} }
file_put_contents(__ROOT__."/tmp/$d_id.ics", "END:VCALENDAR", FILE_APPEND); file_put_contents(__ROOT__."/tmp/$d_id.ics", "END:VCALENDAR", FILE_APPEND);
\chmod(__ROOT__."/tmp/$d_id.ics", 0775);
/* (2) Register update /* (2) Register update
---------------------------------------------------------*/ ---------------------------------------------------------*/