[R45phpbbmods-checkins] user_search/templates/fisubsilver/admin admin_user_search_form.tpl,1.3,1.4 a
Brought to you by:
rasadam
|
From: Adam A. <ra...@us...> - 2004-12-31 05:27:04
|
Update of /cvsroot/r45phpbbmods/user_search/templates/fisubsilver/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10343/templates/fisubsilver/admin Modified Files: admin_user_search_form.tpl admin_user_search_results.tpl Log Message: ## 2004/12/31 - Version 1.0.2 ## - Fixed bug in Moderators Query (Ommited forum clause) (Credits to JRSweets) ## - Fixed bug in Group Selecting where total SQL returned maximum 1 row (Credits to nanjang) ## - Fixed bug where users would be selected twice if the had moderation permissions set by ## a group and their individual permissions ## - Removed SQL Injection vulnerability ## - Fixed bug with incorrect language file calls ## - Added Sorting of results by Last Visit ## - Included Last Visit in results ## - Added Field of Last Visit to the Search Options Index: admin_user_search_form.tpl =================================================================== RCS file: /cvsroot/r45phpbbmods/user_search/templates/fisubsilver/admin/admin_user_search_form.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** admin_user_search_form.tpl 19 May 2004 21:44:41 -0000 1.3 --- admin_user_search_form.tpl 31 Dec 2004 05:26:54 -0000 1.4 *************** *** 75,78 **** --- 75,87 ---- </tr> <tr> + <td class="row2" align="left" nowrap="nowrap"><span class="gen">{L_LASTVISITED} <select name="lastvisited_type"><option value="in">{L_IN_THE_LAST}</option><option value="after">{L_AFTER_THE_LAST}</option></select> <select name="lastvisited_days">{LASTVISITED_LIST}</select> <input type="submit" class="post2" name="search_lastvisited" value="{L_SEARCH}" /></span></td> + </tr> + <tr> + <td class="row3" align="left"><span class="gensmall">{L_LASTVISITED_EXPLAIN}</span></td> + </tr> + <tr> + <td class="cat" colspan="1" height="28"> </td> + </tr> + <tr> <td class="row2" align="left" nowrap="nowrap"><span class="gen">{L_LANGUAGE}: {LANGUAGE_LIST} <input type="submit" class="post2" name="search_language" value="{L_SEARCH}" /></span></td> </tr> Index: admin_user_search_results.tpl =================================================================== RCS file: /cvsroot/r45phpbbmods/user_search/templates/fisubsilver/admin/admin_user_search_results.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** admin_user_search_results.tpl 19 May 2004 21:44:41 -0000 1.2 --- admin_user_search_results.tpl 31 Dec 2004 05:26:54 -0000 1.3 *************** *** 6,10 **** <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> ! <td align="center" class="nav"><span class="gen">{L_SORT_OPTIONS}</span> <a href="{U_USERNAME}">{L_USERNAME}</a> | <a href="{U_EMAIL}">{L_EMAIL}</a> | <a href="{U_POSTS}">{L_POSTS}</a> | <a href="{U_JOINDATE}">{L_JOINDATE}</a></td> </tr> </table> --- 6,10 ---- <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> ! <td align="center" class="nav"><span class="gen">{L_SORT_OPTIONS}</span> <a href="{U_USERNAME}">{L_USERNAME}</a> | <a href="{U_EMAIL}">{L_EMAIL}</a> | <a href="{U_POSTS}">{L_POSTS}</a> | <a href="{U_JOINDATE}">{L_JOINDATE}</a> | <a href="{U_LASTVISIT}">{L_LASTVISIT}</a></td> </tr> </table> *************** *** 22,25 **** --- 22,26 ---- <th class="thTop" nowrap="nowrap">{L_JOINDATE}</th> <th class="thTop" nowrap="nowrap">{L_POSTS}</th> + <th class="thTop" nowrap="nowrap">{L_LASTVISIT}</th> <th class="thTop" nowrap="nowrap"> </th> <th class="thTop" nowrap="nowrap"> </th> *************** *** 33,36 **** --- 34,38 ---- <td class="{userrow.ROW_CLASS}" align="center" nowrap="nowrap"><span class="gen"> {userrow.JOINDATE} </span></td> <td class="{userrow.ROW_CLASS}" align="center" nowrap="nowrap"><span class="gen"> <a href="{userrow.U_VIEWPOSTS}" class="gen">{userrow.POSTS}</a> </span></td> + <td class="{userrow.ROW_CLASS}" align="center" nowrap="nowrap"><span class="gen"> {userrow.LASTVISIT} </span></td> <td class="{userrow.ROW_CLASS}" align="center" nowrap="nowrap"><span class="gen"> <a href="{userrow.U_MANAGE}" class="gen">{L_MANAGE}</a> </span></td> <td class="{userrow.ROW_CLASS}" align="center" nowrap="nowrap"><span class="gen"> <a href="{userrow.U_PERMISSIONS}" class="gen">{L_PERMISSIONS}</a> </span></td> |