Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Quote Download Post 
Post Error In Rainbow Pearl [phpBB3] 
 
mcp_post.html

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


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


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


Find:
Code: [Download] [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: [Download] [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
 



 
will_houghPMWebsite  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Quote Download Post 
Post Re: Error In Rainbow Pearl [phpBB3] 
 
Thank you very much Will, of course you are correct.

All styles updated. :wink:

Thanks for reporting.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonPME-mailWebsite  
Back to topPage bottom
Quote Download Post 
Post Re: Error In Rainbow Pearl [phpBB3] 
 
Happy to help Luca.
 



 
will_houghPMWebsite  
Back to topPage bottom
Quote Download Post 
Post 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: [Download] [Hide]
  1. img_icon_contact_yahoo = icon_contact_yahoo.png 


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

 



 
will_houghPMWebsite  
Back to topPage bottom
Quote Download Post 
Post 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. :cry:

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




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonPME-mailWebsite  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron