mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 02:36:42 +02:00
fix(security): add csrf filter + prevent xss attacks by escaping user input
- update CI4 to v4.1.9's stable production package - update php and js dependencies to latest
This commit is contained in:
parent
a597cf4ecf
commit
cd2e1e1dc3
182 changed files with 4410 additions and 4214 deletions
|
|
@ -62,6 +62,7 @@ class AnalyticsPodcastByPlayerModel extends Model
|
|||
cache()
|
||||
->save("{$podcastId}_analytics_podcasts_by_player_by_app_weekly", $found, 600);
|
||||
}
|
||||
|
||||
return $found;
|
||||
}
|
||||
|
||||
|
|
@ -90,6 +91,7 @@ class AnalyticsPodcastByPlayerModel extends Model
|
|||
cache()
|
||||
->save("{$podcastId}_analytics_podcasts_by_player_by_app_yearly", $found, 600);
|
||||
}
|
||||
|
||||
return $found;
|
||||
}
|
||||
|
||||
|
|
@ -119,6 +121,7 @@ class AnalyticsPodcastByPlayerModel extends Model
|
|||
cache()
|
||||
->save("{$podcastId}_analytics_podcasts_by_player_by_os_weekly", $found, 600);
|
||||
}
|
||||
|
||||
return $found;
|
||||
}
|
||||
|
||||
|
|
@ -147,6 +150,7 @@ class AnalyticsPodcastByPlayerModel extends Model
|
|||
cache()
|
||||
->save("{$podcastId}_analytics_podcasts_by_player_by_device_weekly", $found, 600);
|
||||
}
|
||||
|
||||
return $found;
|
||||
}
|
||||
|
||||
|
|
@ -175,6 +179,7 @@ class AnalyticsPodcastByPlayerModel extends Model
|
|||
cache()
|
||||
->save("{$podcastId}_analytics_podcasts_by_player_bots", $found, 600);
|
||||
}
|
||||
|
||||
return $found;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue