scratch – Diff between revs 121 and 124

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 121 Rev 124
Line 5... Line 5...
5 ########################################################################### 5 ###########################################################################
Line 6... Line 6...
6   6  
7 require_once('php/pseudocrypt.php'); 7 require_once('php/pseudocrypt.php');
8 require_once('php/functions.php'); 8 require_once('php/functions.php');
-   9 require_once('vendor/autoload.php');
-   10  
9 require_once('vendor/autoload.php'); 11 ### FFMpeg
Line 10... Line 12...
10 require_once('vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFMpeg.php'); 12 require_once('vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/FFMpeg.php');
11   13  
Line 71... Line 73...
71 ) 73 )
72 ); 74 );
Line 73... Line 75...
73 75
74 ### Do not re-create the thumbnail if it already exists. 76 ### Do not re-create the thumbnail if it already exists.
-   77 if (file_exists($previewFile.'.'.'jpg')) {
75 if (file_exists($previewFile.'.'.'jpg')) { 78 $opengraph = TRUE;
76 break; 79 break;
Line 77... Line 80...
77 } 80 }
78 81