mirror of
https://github.com/itflow-org/itflow
synced 2026-08-16 12:35:11 +00:00
More sweeps to replace select * with actual returned column names dramatically reduces php memory usage and speeds up processing dramatically especially in the crons since they run all the time
This commit is contained in:
@@ -45,7 +45,7 @@ $feed_key = escapeSql($_GET['key']);
|
||||
|
||||
$sql = mysqli_query(
|
||||
$mysqli,
|
||||
"SELECT * FROM calendars
|
||||
"SELECT calendar_id, calendar_name FROM calendars
|
||||
WHERE calendar_feed_key = '$feed_key'
|
||||
AND calendar_feed_key IS NOT NULL
|
||||
AND calendar_archived_at IS NULL
|
||||
|
||||
Reference in New Issue
Block a user