Ignore:
Timestamp:
Aug 20, 2013, 6:05:44 PM (11 years ago)
Author:
Eric
Message:

Fix a FluxBB issue (FluxBB mod) : When a new user registers, "Newest registered user" does not show him.

Tips in language/en_UK/plugin.lang.php and language/fr_FR/plugin.lang.php updated to give the way to apply the above fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Register_FluxBB/language/en_UK/plugin.lang.php

    r23513 r24198  
    4646  <b>with :</b>
    4747  <div class="info">&lt;a href=&quot;../[YourPiwigoRoot]/password.php&quot; tabindex=&quot;5&quot;&gt;&lt;?php echo $lang_login[\'Forgotten pass\'] ?&gt;&lt;/a&gt;</div>
    48   <br/>';
     48<br/><br/>
     49  <b>* Modify the file</b> : [FluxBBRoot]/index.php <b>after</b> ligne 18 :
     50  <div class="mod">
     51// Load the index.php language file<br/>
     52require PUN_ROOT.\'lang/\'.$pun_user[\'language\'].\'/index.php\';
     53  </div>
     54  <b>Insert :</b>
     55  <div class="info">
     56// Mod to regenerate user cache on each load<br/>
     57&nbsp;if (!defined(\'FORUM_CACHE_FUNCTIONS_LOADED\'))<br/>
     58&nbsp;&nbsp;&nbsp;require PUN_ROOT.\'include/cache.php\';
     59<br/><br/>
     60&nbsp;&nbsp;&nbsp;generate_users_info_cache();<br/>
     61// ------------------------------------------<br/>
     62  </div>
     63<br/>';
    4964
    5065
Note: See TracChangeset for help on using the changeset viewer.