Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1148 → Rev 1149

/trunk/plugins/viathinksoft/adminPages/920_nostalgia/export_win.php
168,7 → 168,7
 
$exe_url = 'https://github.com/danielmarschall/oidplus_win95/raw/master/OIDPLUS.exe';
$exe = url_get_contents($exe_url);
if (!$exe) {
if ($exe === false) {
throw new OIDplusException(_L("Cannot download the binary file from GitHub (%1)", $exe_url));
}
$zip->addFromString('OIDPLS32.EXE', $exe);
175,7 → 175,7
 
$exe_url = 'https://github.com/danielmarschall/oidplus_win311/raw/master/OIDPLUS.exe';
$exe = url_get_contents($exe_url);
if (!$exe) {
if ($exe === false) {
throw new OIDplusException(_L("Cannot download the binary file from GitHub (%1)", $exe_url));
}
$zip->addFromString('OIDPLS16.EXE', $exe);