
Problem with marking a post (Bugs)
Hi,
okay, you are right. Now, I can confirm your problem.
If I mark a posting from the forum index the post marks fine with a red X
Yes, this should always the case.
I get an error, the red X does not show and is undefined.
That is true, because the dynamic JS-file index.php?mode=js_defaults
has (sometimes) a wrong user_type
-argument.
<script src="{$FORUM_ADDRESS}/index.php?mode=js_defaults&t={$settings.last_changes}{if $user}&user_type={$user_type}{/if}" type="text/javascript" charset="utf-8"></script>
The user_type
is set correctly in index.php line 97 but is overwritten in entry.inc.php line 235. Whereas in index.php
, the user_type is related to the current user, in entry.inc.php
the user_type
is related to the user of the posting.
A simple solution is to replace line 32 in main.tmpl by:
<script src="{$FORUM_ADDRESS}/index.php?mode=js_defaults&t={$settings.last_changes}{if $user}&user_type={if $mod}1{elseif $admin}2{else}0{/if}{/if}" type="text/javascript" charset="utf-8"></script>
@Auge, should I update the main.tmpl at Github?
/Micha
--
applied-geodesy.org - OpenSource Least-Squares Adjustment Software for Geodetic Sciences
Complete thread:
- Problem with marking a post -
Magma,
2017-08-25, 10:25
- Problem with marking a post -
Micha,
2017-08-25, 10:33
- Problem with marking a post -
Magma,
2017-08-25, 10:40
- Problem with marking a post -
Micha,
2017-08-25, 12:19
- Problem with marking a post -
Auge,
2017-08-25, 12:47
- Solved - Micha, 2017-08-25, 15:10
- thanks - Magma, 2017-08-26, 13:30
- Problem with marking a post -
Auge,
2017-08-25, 12:47
- Problem with marking a post -
Micha,
2017-08-25, 12:19
- Problem with marking a post -
Magma,
2017-08-25, 10:40
- Problem with marking a post -
Micha,
2017-08-25, 10:33