1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
This commit is contained in:
Daniel 2023-02-09 16:48:56 -03:00
parent f243640a6d
commit 7fd07b3db2

View file

@ -7,8 +7,5 @@ if (!isCommandLineInterface()) {
return die('Command Line only'); return die('Command Line only');
} }
ob_end_flush(); ob_end_flush();
$checkIfIsCorrupted = intval(@$argv[1]);
echo "checkIfIsCorrupted = $checkIfIsCorrupted" . PHP_EOL;
$users_ids = [];
$sql = "UPDATE videos SET status = ? WHERE status = ? "; $sql = "UPDATE videos SET status = ? WHERE status = ? ";
sqlDAL::writeSql($sql, 'ss', array(Video::$statusUnlistedButSearchable, Video::$statusUnlisted)); sqlDAL::writeSql($sql, 'ss', array(Video::$statusUnlistedButSearchable, Video::$statusUnlisted));