inherit
58740
0
Aug 20, 2024 7:29:21 GMT -8
®i©hie
I'm not very active here anymore thanks to my full-time job. - 12/27/23
14,036
September 2005
soe
|
Post by ®i©hie on Jan 23, 2012 17:21:32 GMT -8
you can add me to the Authors Who Have Granted Us Permission to Edit All Codes list.
|
|
inherit
24252
0
Aug 1, 2023 15:01:24 GMT -8
coolcoolcool
When the world says, "Give up," Hope whispers, "Try it one more time."
2,148
May 2004
coolcoolcool
|
Post by coolcoolcool on Apr 24, 2012 15:28:23 GMT -8
My code listed here both prevents users from voting in polls (in firefox but not IE) and doesn't work once a vote is submitted. I'm not sure if proboards has changed since I submitted it, because I am confused as to how I would have submitted it without realizing this. I took a look at what might be wrong with it and I'm not seeing the error. I'm too lazy to spend anymore time debugging it, so it would probably be a good idea just to remove it. I doubt many people used it anyway lol.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Apr 24, 2012 17:33:10 GMT -8
since it was written in 2007 a lot HAS changed.
if you dont want to update it, you can just delete it.
|
|
inherit
24252
0
Aug 1, 2023 15:01:24 GMT -8
coolcoolcool
When the world says, "Give up," Hope whispers, "Try it one more time."
2,148
May 2004
coolcoolcool
|
Post by coolcoolcool on Apr 24, 2012 17:46:16 GMT -8
Deleted.
In case the index needs to be updated, the name of the code was [CB] Organize Votes from Least to Most.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Apr 24, 2012 17:51:02 GMT -8
I can take care of that.
|
|
#00AF33
Bark Different.
102833
0
1
Feb 12, 2023 16:57:46 GMT -8
RedBassett
I'm a Marxist/Lennonist of the Groucho/John variety.
15,405
April 2007
applecomputer
RedBassett's Mini-Profile
|
Post by RedBassett on Jun 1, 2012 12:42:25 GMT -8
I answered this support ticket for a bug in the code "Second Admin Editable Only Signature by Chris".
|
|
inherit
16846
0
Nov 19, 2012 15:20:20 GMT -8
Chris
3,036
December 2003
cddude
|
Post by Chris on Jun 2, 2012 8:46:51 GMT -8
I answered this support ticket for a bug in the code "Second Admin Editable Only Signature by Chris". Patched it at SZ.
|
|
inherit
104708
0
May 8, 2020 19:08:36 GMT -8
ShinyBlue44
53
May 2007
liz81
|
Post by ShinyBlue44 on Jul 22, 2012 14:56:36 GMT -8
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jul 22, 2012 15:38:29 GMT -8
Create a new thread pertaining to these codes first. this thread is for updating codes it has been verified they need to be fixed first.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Aug 12, 2012 16:00:16 GMT -8
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Sept 19, 2012 6:03:22 GMT -8
Affected Codes: Multiple Money Hack [CB] and [CB] Money Hack v3Well after reading the user's reply in that thread on your forum, I must admit I was just as ignorant as the money hack code since I thought number representations was a universal given . It seems the Dutch use periods for grouping and commas for decimal portion (12.345.678,90 instead of 12,345,678.90) so the fault lies not with the user's regional setting but rather with the money code assuming period was always the decimal symbol, especially since it uses a localization method to be numerically multilingual. The user should not need to change any of his regional settings, instead try changing the following line in the code num = num.toLocaleString().replace(/\.\d+/, "");to num = parseInt(num).toLocaleString();If he keeps his regional settings as they are (and should be) then that change *should* work and still display the number in the local format of the end-user, I haven't however tested it. That line would be found in the fNum function. Almost three years later, a second, independent case with same results confirms the hypothesis. Countries using Arabic numerals with decimal point Countries where a dot "." is used to mark the radix point include: Australia, Botswana, British West Indies, Brunei, Canada (English-speaking), Dominican Republic, Guatemala, Hong Kong, India, Ireland, Israel, Japan, Kenya, Korea (both North and South), Lebanon, Luxembourg (uses both marks officially), Macau (in Chinese and English text), Malaysia, Malta, Mexico, Nepal, New Zealand, Nicaragua, Nigeria, Pakistan, Panama, People's Republic of China, Philippines, Singapore, Sri Lanka, Switzerland (when the amount is in Swiss francs[15]), Taiwan, Tanzania, Thailand, Uganda, United Kingdom, United States (including insular areas), Zimbabwe. Errata: Dominican Republic is listed in both lists (using dot and comma) Countries using Arabic numerals with decimal comma Countries where a comma "," is used to mark the radix point include: Albania, Andorra, Argentina, Armenia, Austria, Azerbaijan, Belarus, Belgium, Bolivia, Bosnia and Herzegovina, Brazil, Bulgaria, Cameroon, Canada (French-speaking), Chile, Colombia, Costa Rica, Croatia (comma used officially, but both forms are in use elsewhere), Cuba, Cyprus, Czech Republic, Denmark, Dominican Republic, Ecuador, Estonia, Faroes, Finland, France, Germany, Georgia, Greece, Greenland, Honduras, Hungary, Iceland, Indonesia, Italy, Kazakhstan, Kirgistan, Latvia, Lebanon, Lithuania, Luxembourg (uses both marks officially), Macau (in Portuguese text), Macedonia, Moldova, Mongolia, Morocco, Netherlands, Norway, Paraguay, Peru, Poland, Portugal, Romania, Russia, Serbia, Slovakia, Slovenia, South Africa (officially[16]), Spain, Sweden, Switzerland (when the amount is not in Swiss francs[17]), Tunisia, Turkey, Ukraine, Uruguay, Uzbekistan, Venezuela, Vietnam.
|
|
amos
New Member
Posts: 70
inherit
184346
0
Jan 26, 2014 12:34:57 GMT -8
amos
70
October 2012
amos
|
Post by amos on Nov 22, 2012 16:26:11 GMT -8
Is the first post in the code data base by peter working for you?
All I see is a bunch of ubbc. Using the latest FF.
Thanks.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Nov 22, 2012 16:57:55 GMT -8
I fixed all that, but the links arent going to scroll down to the right spots. I have to go back and insert new links for everything.
along these lines, remember that this whole list wont really be 100% valid after the final conversion since most of these codes wont even work. The new plugin list will have to be created for getting codes.
|
|
amos
New Member
Posts: 70
inherit
184346
0
Jan 26, 2014 12:34:57 GMT -8
amos
70
October 2012
amos
|
Post by amos on Nov 22, 2012 18:31:58 GMT -8
I fixed all that, but the links arent going to scroll down to the right spots. I have to go back and insert new links for everything. along these lines, remember that this whole list wont really be 100% valid after the final conversion since most of these codes wont even work. The new plugin list will have to be created for getting codes. Thanks from all the members and whoever uses those codes. Just thought you or someone would like to know... You are welcome.
|
|