refactor: Moved classes from Legacy folder to src root (#1828)

* refactor: Moved classes from `Legacy` folder to `src` root

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updated

* Updater

* Update Caches.php

* Updater

* Updater

* Updater

* Updater

* Update Attach.php

* Update Post.php

* Update BBCode.php

* Update SqlDb.php

* Update Upload.php

* Update Upload.php

* Updated

* Updated

* Revert "Updated"

This reverts commit 9ecc26b048.

* Revert "Updated"

This reverts commit 22db50889c.

* Revert "Update Upload.php"

This reverts commit a6faf4191a.
This commit is contained in:
Roman Kelesidis 2025-03-02 01:18:26 +07:00 committed by GitHub
commit 92ce77ec0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
73 changed files with 260 additions and 278 deletions

View file

@ -538,14 +538,14 @@ if (!DB()->sql_query($sql)) {
// Does this topic contain a poll?
//
if ($topic_has_poll) {
$poll_votes_js = \TorrentPier\Legacy\Poll::get_poll_data_items_js($topic_id);
$poll_votes_js = TorrentPier\Poll::get_poll_data_items_js($topic_id);
if (!$poll_votes_js) {
$template->assign_vars(['TOPIC_HAS_POLL' => false]);
} else {
$template->assign_vars([
'SHOW_VOTE_BTN' => \TorrentPier\Legacy\Poll::pollIsActive($t_data),
'POLL_ALREADY_VOTED' => \TorrentPier\Legacy\Poll::userIsAlreadyVoted($topic_id, (int)$userdata['user_id']),
'SHOW_VOTE_BTN' => TorrentPier\Poll::pollIsActive($t_data),
'POLL_ALREADY_VOTED' => TorrentPier\Poll::userIsAlreadyVoted($topic_id, (int)$userdata['user_id']),
'POLL_VOTES_JS' => $poll_votes_js
]);
}