Missing things after updating.

Submitted by Reiji Kurosaky, Feb 2007.
Page: 2
Pages: [1] [2] [3]
In that example theres a missing thing in the configuration of the admin cp. With an english language you can see the missing part is:

"Enable Visual Confirmation"

Thats an option that was added to phpBB 2.0.16 (or something like that :P) so your language file is missing that part.

When something like this happen, just:
Code:
  1. #  
  2. #-----[ OPEN ]------------------------------------------  
  3. #  
  4. language/lang_english/lang_admin.php  
  5.  
  6. #  
  7. #-----[ FIND & COPY ]------------------------------------------  
  8. #  
  9.  
  10. // Visual Confirmation  
  11. $lang['Visual_confirm'] = 'Enable Visual Confirmation';  
  12. $lang['Visual_confirm_explain'] = 'Requires users enter a code defined by an image when registering.';  
  13.  
  14. #  
  15. #-----[ OPEN ]------------------------------------------  
  16. #  
  17. language/lang_spanish/lang_admin.php  
  18.  
  19. #  
  20. #-----[ FIND ]------------------------------------------  
  21. #  
  22.  
  23. ?>  
  24.  
  25. #  
  26. #-----[ BEFORE ADD ]------------------------------------------  
  27. #  
  28.  
  29. // Visual Confirmation  
  30. $lang['Visual_confirm'] = 'Activar Confirmación Visual';  
  31. $lang['Visual_confirm_explain'] = 'Requiere que el usuario ingrese un código definido por una imágen cuando se registre.';  
  32.  
  33.  
Everytime they release a newer version, you´ll need to do this kind of things (at least on realeases that include a new option or functionality to the board).
Page: 2
Pages: [1] [2] [3]

Share this tutorial

If you want to show this tutorial to someone else please use following code to link to this tutorial:
HTML Link:
Forum BBCode:
Content of this tutorial may not be published anywhere else without author's permission. Please link to this page instead.