-
-
Notifications
You must be signed in to change notification settings - Fork 811
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[K6.2] Add layouts to fix issues with Php 8.2.x (#9580)
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
/** | ||
* Kunena Component | ||
* | ||
* @package Kunena.Site | ||
* @subpackage Layout.Topic.Item | ||
* | ||
* @copyright Copyright (C) 2008 - 2023 Kunena Team. All rights reserved. | ||
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL | ||
* @link https://www.kunena.org | ||
**/ | ||
|
||
namespace Kunena\Forum\Site\Layout\Topic\Poll; | ||
|
||
\defined('_JEXEC') or die; | ||
|
||
use Kunena\Forum\Libraries\Layout\KunenaLayout; | ||
|
||
/** | ||
* KunenaLayoutTopicList | ||
* | ||
* @since Kunena 6.2 | ||
*/ | ||
class TopicPollResults extends KunenaLayout | ||
{ | ||
public $intervalTimeToLive; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
/** | ||
* Kunena Component | ||
* | ||
* @package Kunena.Site | ||
* @subpackage Layout.Topic.Item | ||
* | ||
* @copyright Copyright (C) 2008 - 2023 Kunena Team. All rights reserved. | ||
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL | ||
* @link https://www.kunena.org | ||
**/ | ||
|
||
namespace Kunena\Forum\Site\Layout\Topic\Poll; | ||
|
||
\defined('_JEXEC') or die; | ||
|
||
use Kunena\Forum\Libraries\Layout\KunenaLayout; | ||
|
||
/** | ||
* KunenaLayoutTopicList | ||
* | ||
* @since Kunena 6.2 | ||
*/ | ||
class TopicPollVote extends KunenaLayout | ||
{ | ||
public $intervalTimeToLive; | ||
} |