lmao... whoops

This commit is contained in:
swag 2022-10-20 17:06:45 -04:00
parent 20f50780c3
commit db2f835adf
2 changed files with 0 additions and 16 deletions

View File

@ -4,14 +4,6 @@ use Mojo::Base -base, -signatures;
has 'pg';
sub new($class, $pg, $pg_reference) {
bless {
$pg => $pg_reference,
remarks_per_page => 5,
date_format => 'Dy Mon FMDD HH24:MI TZ YYYY'
}, $class
}
sub by_page_for($self, $thread_id, $this_page = 1) {
my $date_format = $self->{'date_format'};
my $row_count = $self->{'remarks_per_page'};

View File

@ -4,14 +4,6 @@ use Mojo::Base -base, -signatures;
has 'pg';
sub new($class, $pg, $pg_reference) {
bless {
$pg => $pg_reference,
threads_per_page => 5,
date_format => 'Dy Mon FMDD HH24:MI TZ YYYY'
}, $class
}
sub create($self, $author, $title, $body, $hidden = 0, $flagged = 0) {
my @data = ($author, $title, $body, $hidden, $flagged);