Welcome, Guest. Please Login or Register.
April 20, 2024, 10:34:27 AM
Home Help Search Log in Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.4.1] Guests can view memberlist « previous next »
Pages: [1] Reply Ignore Print
Author Topic: [Done 1.4.1] Guests can view memberlist  (Read 120166 times)
Beertje
Noobie
*
Posts: 12


[Done 1.4.1] Guests can view memberlist
« on: October 14, 2002, 08:57:52 AM »
Reply with quote

With this mod you will give guests the right to view the memberlist.

Email addresses that are set as hidden in the members profile will not be visible for guest.

You can download this one at: http://www.acherentals.com/YaBB_SE/attachments/guest_can_view_memberlist.zip

REMARK: The package contains also a version to mod your memberlist in case you installed the Online Time Mod v0.3a by Vorapoap.
« Last Edit: October 23, 2002, 10:31:52 AM by Beertje » Logged
Beertje
Noobie
*
Posts: 12


Re:[Done 1.4.1] Guests can view memberlist
« Reply #1 on: October 23, 2002, 10:31:22 AM »
Reply with quote

No comments on this, so it's DONE now.
Logged
Daniel D.
Mod Team
YaBB God
*****
Posts: 2935


Re:[Done 1.4.1] Guests can view memberlist
« Reply #2 on: October 23, 2002, 06:30:01 PM »
Reply with quote

Nice ! Thx.
Logged

sensovision
Full Member
***
Posts: 100


WWW
Re:[Done 1.4.1] Guests can view memberlist
« Reply #3 on: June 22, 2003, 07:35:32 PM »
Reply with quote

Hi Beertje, nice mod! BTW will you make it compatible with 1.5.4?
Logged

Denis

Are you good with the graphic? check out our design logo contest!
sharkey
Jr. Member
**
Posts: 51


sharkey0903@hotmail.com WWW
Re:[Done 1.4.1] Guests can view memberlist
« Reply #4 on: March 26, 2004, 05:20:32 PM »
Reply with quote

just tried this on 1.5.5 with no luck, any chance of it being updated ? :)
Logged


Visit the Movie Compound![/url]
sharkey
Jr. Member
**
Posts: 51


sharkey0903@hotmail.com WWW
Re:[Done 1.4.1] Guests can view memberlist
« Reply #5 on: March 26, 2004, 06:51:10 PM »
Reply with quote

Just had a go at updating the code myself and it seems to be working ok on my board, guests can now view the member list and if email is hidden it is not shown to guests (as per the previous code).

Not sure what the procedure is for updating code, so I do apologise if this is breaking any rules but hopefully someone will find the below useful.  

Note this is not my mod, but simply updated code based on Beertje's original mod. The below is how my mod file now looks.



<id>
Guests can view memberlist
</id>

<version>
1.0
</version>

<author>
Beertje
</author>

<homepage>
http://www.acherentals.be/
http://www.acherentals.com/YaBB_SE
</homepage>

<mod info>
This mod will show the memberlist to guests also.
Email addresses that are set hidden in members profile are not shown in the memberlist.
</mod info>

<edit file>
Sources/Memberlist.php
</edit file>

<search for>
if ($username == "Guest")
   fatal_error($txt[223]);
</search for>

<replace>
// if ($username == "Guest")
//   fatal_error($txt[223]);
</replace>


<search for>
   if ($user == 'Guest')
      fatal_error($txt[223]);
</search for>

<replace>
//    if ($user == 'Guest')
//      fatal_error($txt[223]);
</replace>


<search for>
      $row['emailAddress'] = (($row['hideEmail'] && $settings[7] != "Administrator" && $allow_hide_email) ? "" : "<a href=\"mailto:$row[emailAddress]\"><img src=\"$imagesdir/email_sm.gif\" alt=\"$txt[69]\" title=\"$txt[69] $row[realName]\" border=\"0\" /></a>");
</search for>

<replace>
      $row['emailAddress'] = (($row['hideEmail'] && ($settings[7] != "Administrator" || $user == "Guest") && $allow_hide_email) ? "" : "<a href=\"mailto:$row[emailAddress]\"><img src=\"$imagesdir/email_sm.gif\" alt=\"$txt[69]\" title=\"$txt[69] $row[realName]\" border=\"0\" /></a>");
</replace>


<search for>
   if ($user == "Guest")
      fatal_error($txt[223]);
</search for>

<replace>
//    if ($user == "Guest")
//      fatal_error($txt[223]);
</replace>

<search for>
   if ($user == 'Guest')
      fatal_error($txt[223]);
</search for>

<replace>
//   if ($user == 'Guest')
//      fatal_error($txt[223]);
</replace>
Logged


Visit the Movie Compound![/url]
Pages: [1] Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.4.1] Guests can view memberlist « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.041 seconds with 21 queries.