Author |
Message |
vlad77 Board Member

Joined: 31 May 2015
    Posts: 93

|
Posted: Thu Jul 11, 2019 7:28 am Post subject: Mod Folder You Posts |
|
|
Title: Mod Folder You Posts
Author: vlad77
Description: This mod in the forums and in the search, the dot (point) marks the topics in which you posted messages.
Version: 1.0.1
Note: Another borrowing from phpBB3
Description: |
Version: 1.0.1 This mod in the forums and in the search, the dot (point) marks the topics in which you posted messages. |
|
 Download |
Filename: |
Mod_folder_you_posts.zip |
Filesize: |
17.89 KB |
Downloaded: |
54 Time(s) |
|
|
Back to top |
|
 |
lumpy burgertushie Board Member

Joined: 19 Nov 2008
           Posts: 237

|
Posted: Sat Jul 13, 2019 3:04 pm Post subject: Re: Mod Folder You Posts |
|
|
doesnt' phpbb 2 already do that? it does on this board and I thought it was a standard part of phpbb2
robert
|
|
Back to top |
|
 |
Vendethiel Board Member

Joined: 26 Oct 2014
     Posts: 162

|
|
Back to top |
|
 |
drathbun Board Member

Joined: 24 Jul 2008
           Posts: 687 Location: Texas

|
Posted: Sun Jul 14, 2019 4:07 am Post subject: Re: Mod Folder You Posts |
|
|
The feature used on this site (and my other phpBB2 boards) is definitely a MOD. I don't seem to have captured the steps / written it up as a MOD install file though. The list of MODs on this board is here:
http://www.phpbb2refugees.com/viewtopic.php?t=26
The feature you're talking about is called the Activity Indicator.
_________________ phpBBDoctor Blog |
|
Back to top |
|
 |
vlad77 Board Member

Joined: 31 May 2015
    Posts: 93

|
Posted: Sun Jul 14, 2019 12:16 pm Post subject: Re: Mod Folder You Posts |
|
|
Version: 1.0.1
Removed query cache cleanup topics when creating a new topic, because clear doesn't.
Added addon for clearing the cache through the admin area.
Update 1.0.0 to 1.0.1
Code: | open
includes/functions.php
find
if($mode != '' && $mode != 'post_id' && $mode != 'reset_all' && $mode != 'newtopic' && $mode != 'reply' && $mode != 'delete' && $mode != 'remove')
replace with
if($mode != '' && $mode != 'post_id' && $mode != 'reset_all' && $mode != 'reply' && $mode != 'delete' && $mode != 'remove') |
|
|
Back to top |
|
 |
vlad77 Board Member

Joined: 31 May 2015
    Posts: 93

|
Posted: Sun Jul 14, 2019 12:24 pm Post subject: Re: Mod Folder You Posts |
|
|
On this forum http://phpbb2refugees.com/ , the topics in which I left messages are not marked by a point.
Topics in which you wrote something are automatically marked with a dot (point).
I'm from Russia, maybe a bad translation in English
In attachment, what it looks like
Description: |
|
Filesize: |
18.97 KB |
Viewed: |
67 Time(s) |

|
|
|
Back to top |
|
 |
drathbun Board Member

Joined: 24 Jul 2008
           Posts: 687 Location: Texas

|
Posted: Mon Jul 15, 2019 2:55 am Post subject: Re: Mod Folder You Posts |
|
|
Here it's different; it puts the indicator of your posting activity next to the icon, not on top of it. In my case below it's a green arrow. The color is something you can customize in your profile.
Description: |
|
Filesize: |
9.72 KB |
Viewed: |
1389 Time(s) |

|
_________________ phpBBDoctor Blog |
|
Back to top |
|
 |
ABDev Board Member

Joined: 01 Jun 2009
          Posts: 45

|
Posted: Tue Jul 16, 2019 5:24 am Post subject: Re: Mod Folder You Posts |
|
|
vlad77 wrote: | Update 1.0.0 to 1.0.1
Code: | open
includes/functions.php
find
if($mode != '' && $mode != 'post_id' && $mode != 'reset_all' && $mode != 'newtopic' && $mode != 'reply' && $mode != 'delete' && $mode != 'remove')
replace with
if($mode != '' && $mode != 'post_id' && $mode != 'reset_all' && $mode != 'reply' && $mode != 'delete' && $mode != 'remove') |
|
You could use the in_array function, it would have been cleaner.
Code: | if !in_array($mode, array('', 'post_id', 'reset_all', 'reply', 'delete', 'remove')) |
|
|
Back to top |
|
 |
|