mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
* update forum post after editing news (when forum post has been created)
This commit is contained in:
parent
6c9e09ea73
commit
21b1383c9a
@ -10,6 +10,7 @@
|
||||
* @link http://my-aac.org
|
||||
*/
|
||||
defined('MYAAC') or die('Direct access not allowed!');
|
||||
header('X-XSS-Protection: 0');
|
||||
|
||||
if(isset($_GET['archive']))
|
||||
{
|
||||
@ -146,7 +147,12 @@ if($canEdit)
|
||||
$player_id = $news['player_id'];
|
||||
}
|
||||
else {
|
||||
if(News::update($id, $p_title, $body, $type, $category, $player_id, $comments, $errors)) {
|
||||
if(News::update($id, $p_title, $body, $type, $category, $player_id, $forum_section, $errors)) {
|
||||
// update forum thread if exists
|
||||
if(isset($forum_section) && Validator::number($forum_section)) {
|
||||
$db->query("UPDATE `" . TABLE_PREFIX . "forum` SET `author_guid` = ".(int) $player_id.", `post_text` = ".$db->quote($body).", `post_topic` = ".$db->quote($p_title).", `edit_date` = " . time() . " WHERE `id` = " . $db->quote($forum_section));
|
||||
}
|
||||
|
||||
$action = $p_title = $body = $comments = '';
|
||||
$type = $category = $player_id = 0;
|
||||
}
|
||||
@ -287,7 +293,8 @@ if(!$news_cached)
|
||||
'category' => isset($category) ? $category : 0,
|
||||
'categories' => $categories,
|
||||
'forum_boards' => getForumBoards(),
|
||||
'forum_section' => isset($forum_section) ? $forum_section : null
|
||||
'forum_section' => isset($forum_section) ? $forum_section : null,
|
||||
'comments' => isset($comments) ? $comments : null
|
||||
));
|
||||
}
|
||||
|
||||
|
@ -5,5 +5,5 @@ Please choose template in which you want to edit menu items.<br/>
|
||||
<option value="{{ template.template }}">{{ template.template }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input type="submit" value="Edit" />
|
||||
<input type="submit" class="button" value="Edit" />
|
||||
</form>
|
@ -95,6 +95,8 @@
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
{% elseif comments is not null%}
|
||||
<input type="hidden" name="forum_section" value="{{ comments }}" />
|
||||
{% endif %}
|
||||
|
||||
{% set rows = rows + 1 %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user