From 530bbf058781e00e588f1457b6ee589a64b74da1 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 5 Apr 2024 10:46:09 -0400 Subject: i did thing oh god large commit --- src/web/_views/template/comment.php | 2 +- src/web/_views/template/pfp.php | 17 ----------------- src/web/_views/template/post.php | 5 +++-- src/web/_views/template/posts.php | 2 +- 4 files changed, 5 insertions(+), 21 deletions(-) delete mode 100644 src/web/_views/template/pfp.php (limited to 'src/web/_views/template') diff --git a/src/web/_views/template/comment.php b/src/web/_views/template/comment.php index 3ff473b..cf2c0b4 100644 --- a/src/web/_views/template/comment.php +++ b/src/web/_views/template/comment.php @@ -4,7 +4,7 @@ $format_model = $this->load->model('format'); ?>
- view('template/pfp', array('user' => $user))?> +
name($user)?> diff --git a/src/web/_views/template/pfp.php b/src/web/_views/template/pfp.php deleted file mode 100644 index ebb4b5f..0000000 --- a/src/web/_views/template/pfp.php +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - diff --git a/src/web/_views/template/post.php b/src/web/_views/template/post.php index 0633985..fb8cef5 100644 --- a/src/web/_views/template/post.php +++ b/src/web/_views/template/post.php @@ -2,7 +2,7 @@
- view('template/pfp', array('user' => $user))?> +
@@ -21,6 +21,7 @@ $post_attrs['likeId'] = $post['like_id']; } ?> +
@@ -61,7 +62,7 @@
- view('template/pfp', array('user' => $self))?> +
$page_size, 'postCount' => $total, 'postMax' => $max, - 'userId' => $filterUid + 'userId' => $filterUid ? json_encode($filterUid) : '' ) ); } -- cgit v1.2.3-freya