diff --git a/package-lock.json b/package-lock.json
index 2ed4364..8db4865 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "coryd.dev",
- "version": "3.3.1",
+ "version": "3.3.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
- "version": "3.3.1",
+ "version": "3.3.2",
"license": "MIT",
"dependencies": {
"html-minifier-terser": "7.2.0",
diff --git a/package.json b/package.json
index 94c434e..2e46841 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "3.3.1",
+ "version": "3.3.2",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
diff --git a/src/pages/dynamic/movie.php.liquid b/src/pages/dynamic/movie.php.liquid
index 91b959d..5ac45cb 100644
--- a/src/pages/dynamic/movie.php.liquid
+++ b/src/pages/dynamic/movie.php.liquid
@@ -36,7 +36,11 @@ schema: movie
{% tablericon "needle" %} I have a tattoo inspired by this movie!
- Last watched on = date('F j, Y', strtotime($movie["last_watched"])) ?>.
+ setTimezone(new DateTimeZone('America/Los_Angeles'));
+ ?>
+ Last watched on = $date->format('F j, Y') ?>.
diff --git a/src/pages/dynamic/show.php.liquid b/src/pages/dynamic/show.php.liquid
index 9145c8b..e9068b7 100644
--- a/src/pages/dynamic/show.php.liquid
+++ b/src/pages/dynamic/show.php.liquid
@@ -33,7 +33,11 @@ schema: show
{% tablericon "needle" %} I have a tattoo inspired by this show!
- I last watched = htmlspecialchars($show["episode"]["formatted_episode"]) ?> on = date('F j, Y', strtotime($show["episode"]["last_watched_at"])) ?>.
+ setTimezone(new DateTimeZone('America/Los_Angeles'));
+ ?>
+ I last watched = htmlspecialchars($show["episode"]["formatted_episode"]) ?> on = $date->format('F j, Y') ?>.