Error In Rainbow Pearl [phpBB3] »  Show posts from    to     

Icy Phoenix


phpBB 3 MODS And Styles (Not Compatible With phpBB 3.1) - Error In Rainbow Pearl [phpBB3]



will_hough [ Mon 17 Mar, 2008 05:21 ]
Post subject: Error In Rainbow Pearl [phpBB3]
mcp_post.html

Line: 133 - Remove
Code: [Hide]
  1. <td class="row2"> 


You are also missing the form token var for both forms.
Code: [Hide]
  1. {S_FORM_TOKEN} 


Line: 125 - The javascript to open find username in a new window is incorrect.
Code: [Hide]
  1. onclick="find_username(); 
should be
Code: [Hide]
  1. onclick="find_username(this.href); 


Find:
Code: [Hide]
  1. <table class="tablebg" width="100%" cellpadding="0" cellspacing="0">  
  2. <!-- IF S_CAN_CHGPOSTER -->  
  3. <tr>  
  4. <td class="row1" valign="top"><b class="gen">{L_CHANGE_POSTER}</b></td>  
  5. <td class="row2">  
  6. <form method="post" name="mcp_chgposter" action="{U_POST_ACTION}">  
  7. <input class="post" type="text" name="username" value="" /> <input class="btnmain" type="submit" value="{L_CONFIRM}" name="action[chgposter]" /><br /><span class="gensmall">[ <a href="{U_FIND_USERNAME}" onclick="find_username(); return false;">{L_FIND_USERNAME}</a> ]</span><!-- IF S_USER_SELECT --><br /><select name="u">{S_USER_SELECT}</select> <input type="submit" class="btnmain" name="action[chgposter_ip]" value="{L_CONFIRM}" /><!-- ENDIF -->  
  8. </form>  
  9. </td>  
  10. </tr>  
  11. <!-- ENDIF -->  
  12. <!-- IF S_CAN_LOCK_POST or S_CAN_DELETE_POST -->  
  13. <tr>  
  14. <td class="row1" valign="top"><b class="gen">{L_MOD_OPTIONS}</b></td>  
  15. <td class="row2">  
  16. <td class="row2">  
  17. <form method="post" name="mcp" action="{U_MCP_ACTION}">  
  18. <select name="action"><!-- IF S_CAN_LOCK_POST --><!-- IF S_POST_LOCKED --><option value="unlock_post">{L_UNLOCK_POST} [{L_UNLOCK_POST_EXPLAIN}]</option><!-- ELSE --><option value="lock_post">{L_LOCK_POST} [{L_LOCK_POST_EXPLAIN}]</option><!-- ENDIF --><!-- ENDIF --><!-- IF S_CAN_DELETE_POST --><option value="delete_post">{L_DELETE_POST}</option><!-- ENDIF --></select> <input class="btnmain" type="submit" value="{L_SUBMIT}" />  
  19. </form>  
  20. </td>  
  21. </tr>  
  22. <!-- ENDIF -->  
  23. <tr><td class="cat-bottom" colspan="2">&nbsp;</td></tr>  
  24. </table> 


Replace with:
Code: [Hide]
  1. <table class="tablebg" width="100%" cellpadding="0" cellspacing="0">  
  2. <!-- IF S_CAN_CHGPOSTER -->  
  3. <tr>  
  4. <td class="row1" valign="top"><b class="gen">{L_CHANGE_POSTER}</b></td>  
  5. <td class="row2">  
  6. <form method="post" name="mcp_chgposter" action="{U_POST_ACTION}">  
  7. <input class="post" type="text" name="username" value="" /> <input class="btnmain" type="submit" value="{L_CONFIRM}" name="action[chgposter]" /><br /><span class="gensmall">[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]</span><!-- IF S_USER_SELECT --><br /><select name="u">{S_USER_SELECT}</select> <input type="submit" class="btnmain" name="action[chgposter_ip]" value="{L_CONFIRM}" /><!-- ENDIF -->  
  8. {S_FORM_TOKEN}</form>  
  9. </td>  
  10. </tr>  
  11. <!-- ENDIF -->  
  12. <!-- IF S_CAN_LOCK_POST or S_CAN_DELETE_POST -->  
  13. <tr>  
  14. <td class="row1" valign="top"><b class="gen">{L_MOD_OPTIONS}</b></td>  
  15. <td class="row2">  
  16. <form method="post" name="mcp" action="{U_MCP_ACTION}">  
  17. <select name="action"><!-- IF S_CAN_LOCK_POST --><!-- IF S_POST_LOCKED --><option value="unlock_post">{L_UNLOCK_POST} [{L_UNLOCK_POST_EXPLAIN}]</option><!-- ELSE --><option value="lock_post">{L_LOCK_POST} [{L_LOCK_POST_EXPLAIN}]</option><!-- ENDIF --><!-- ENDIF --><!-- IF S_CAN_DELETE_POST --><option value="delete_post">{L_DELETE_POST}</option><!-- ENDIF --></select> <input class="btnmain" type="submit" value="{L_SUBMIT}" />  
  18. {S_FORM_TOKEN}</form>  
  19. </td>  
  20. </tr>  
  21. <!-- ENDIF -->  
  22. <tr><td class="cat-bottom" colspan="2">&nbsp;</td></tr>  
  23. </table> 


I believe these are all the errors in this file.
Luca, please look over it to make sure I am correct.

Take Care,
- Will


Mighty Gorgon [ Wed 19 Mar, 2008 00:34 ]
Post subject: Re: Error In Rainbow Pearl [phpBB3]
Thank you very much Will, of course you are correct.

All styles updated.

Thanks for reporting.


will_hough [ Fri 21 Mar, 2008 04:59 ]
Post subject: Re: Error In Rainbow Pearl [phpBB3]
Happy to help Luca.


will_hough [ Sun 20 Apr, 2008 05:25 ]
Post subject: Re: Error In Rainbow Pearl [phpBB3]
Another small error for you Luca.

'icon_contact_yim.png' should be named 'icon_contact_yahoo.png'

:: OR ::

Open: imageset.cfg

Find:
Code: [Hide]
  1. img_icon_contact_yahoo = icon_contact_yahoo.png 


Replace with:
Code: [Hide]
  1. img_icon_contact_yahoo = icon_contact_yim.png 


Mighty Gorgon [ Sun 20 Apr, 2008 10:38 ]
Post subject: Re: Error In Rainbow Pearl [phpBB3]
Thanks Will... I think I prefer renaming the image because I have the full name in the other themes, and I just missed that in BP and RP.

Thanks for reporting, I have fixed ColorizeIt! section and I will fix also theme downloads when I have spare time.




Powered by Icy Phoenix