[R45phpbbmods-checkins] user_search INSTALL,1.8,1.9
Brought to you by:
rasadam
|
From: Adam A. <ra...@us...> - 2004-12-31 05:27:05
|
Update of /cvsroot/r45phpbbmods/user_search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10343 Modified Files: INSTALL 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: INSTALL =================================================================== RCS file: /cvsroot/r45phpbbmods/user_search/INSTALL,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** INSTALL 17 Nov 2004 22:50:54 -0000 1.8 --- INSTALL 31 Dec 2004 05:26:53 -0000 1.9 *************** *** 7,11 **** ## Timezone, Moderators (of a specific forum), banned users, IP address (used to post), ## disabled accounts and disabled PM priviliges. ! ## MOD Version: 1.0.0 ## ## Installation Level: (Easy) --- 7,11 ---- ## Timezone, Moderators (of a specific forum), banned users, IP address (used to post), ## disabled accounts and disabled PM priviliges. ! ## MOD Version: 1.0.2 ## ## Installation Level: (Easy) *************** *** 15,27 **** ## lang_user_search.php, LICENCE, INSTALL ############################################################## ! ## The latest version of this MOD can be download at http://www.sourceforge.net/projects/r45phpbbmods/ ############################################################## ## Author Notes: ! ## All you need to do is upload the appropriate files into their directories ! ## and it will show up in the Administration Panel under the User Admin Section as "Search". ## ############################################################## ## MOD History: ## ## 2004/16/11 - Version 1.0.1 ## - Fixed Bug with + Characters being converted to spaces when url encoded --- 15,48 ---- ## lang_user_search.php, LICENCE, INSTALL ############################################################## ! ## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the ! ## latest version of this MOD. Downloading this MOD from other sites could cause malicious code ! ## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered ! ## in our MOD-Database, located at: http://www.phpbb.com/mods/ ############################################################## ## Author Notes: ! ## All you need to do is upload the appropriate files into their directories ! ## and it will show up in the Administration Panel under the User Admin Section as "Search". ! ## ! ## ** UPGRADERS ** -> Simply reupload all files in this MOD overwriting the old files. ! ## ! ## If you're interested in adding additional fields to be search, please see this post: ! ## http://www.phpbb.com/phpBB/viewtopic.php?p=1373307#1373307 ! ## ! ## This MOD has been tested with phpBB 2.0.11. It *should* work with the entire 2.0.x ! ## series. Your mileage with phpBB forks will vary. ## ############################################################## ## MOD History: ## + ## 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 ## 2004/16/11 - Version 1.0.1 ## - Fixed Bug with + Characters being converted to spaces when url encoded *************** *** 52,60 **** # ! copy admin_user_search.php to admin/admin_user_search.php ! copy admin_user_search_form.tpl to templates/subSilver/admin/admin_user_search_form.tpl ! copy admin_user_search_results.tpl to templates/subSilver/admin/admin_user_search_results.tpl ! copy lang_user_search.php to language/lang_english/lang_user_search.php ! # --- 73,80 ---- # ! copy admin/admin_user_search.php to admin/admin_user_search.php ! copy templates/subSilver/admin/admin_user_search_form.tpl to templates/subSilver/admin/admin_user_search_form.tpl ! copy templates/subSilver/admin/admin_user_search_results.tpl to templates/subSilver/admin/admin_user_search_results.tpl ! copy language/lang_english/lang_user_search.php to language/lang_english/lang_user_search.php # |