-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Several fixes #41
base: master
Are you sure you want to change the base?
Several fixes #41
Conversation
FRENCH translation for exceptions.php file FRENCH translation for info_acp_reputation.php FRENCH translation for permissions_reputation.php FRENCH translation for reputation_acp.php FRENCH translation for reputation_common.php FRENCH translation for reputation_rating.php FRENCH translation for reputation_system.php FRENCH translation for reputation_toplist.php FRENCH translation for reputation_warning.php
FRENCH translation for info_acp_reputation.php file
FRENCH translation for permissions_reputation.php file
FRENCH translation for reputation_acp.php file
FRENCH translation for reputation_common.php file
FRENCH translation for reputation_rating.php file
FRENCH translation for reputation_system.php file
FRENCH translation for reputation_toplist.php file
FRENCH translation for reputation_warning.php file
Update for FRENCH translation for info_acp_reputation.php file
Update for ENGLISH translation for info_acp_reputation.php file
Update for FRENCH translation for reputation_acp.php file
Update for ENGLISH translation for reputation_system.php file Source: https://www.phpbb.com/community/viewtopic.php?p=13706431#p13706431
Update for FRENCH translation for reputation_system.php file Source: https://www.phpbb.com/community/viewtopic.php?f=456&t=2210021&start=45#p13706431
Minor update for ENGLISH for reputation_acp.php file
Update for reputation_common.php file : Change a language key which already exists (duplicate) in reputation_system.php
Update for reputation_common.php file which already exists (duplicate) in reputation_system.php
Correct update for reputation_common.php file in relation with: https://www.phpbb.com/community/viewtopic.php?f=456&t=2210021&start=120#p13851641
Correct update for reputation_system.php file in relation with: https://www.phpbb.com/community/viewtopic.php?f=456&t=2210021&start=120#p13851641
Correct update for reputation_common.php file in relation with: https://www.phpbb.com/community/viewtopic.php?f=456&t=2210021&start=120#p13851641
Thanks for the reports! |
In the case of a positive evaluation, the reputation points of the total available quantity are deducted; in the case of a negative evaluation, reputational points are added to the total available quantity. An example of a positive rating An example of a negative rating But should not 5 points out of 10 ? |
Hi @SpeakerCZ, i use this extension. I didn’t notice this behavior on my board, you can test it, here: http://www.ezcom-fr.com (select the EN flag if your are not french). Maybe your settings are not corrects (coherent). If you want, i can share mine in english with screenshots. |
@eeeman1, i suspect an other extension which is related with avatars that’s the cause of your trouble. |
Hello Galixte, |
Ok, i found the same issue like you. I think the problem is around this part of code: https://github.com/Pico/phpBB-Reputation-System/blob/master/controller/rating_controller.php#L781 The problme is the subtraction https://github.com/Pico/phpBB-Reputation-System/blob/master/controller/rating_controller.php#L758
Which means: BUT it should calculate like this: A = B - C even if =C is negative, for example:
It takes into account the negative value and adds this with the subtraction thus -- = +. Any solution @jbreu or @WorkingWarrior ? |
I never used that feature. But reading your comments a quick solution seems to be to use the absolute numbers instead of the actual pos/neg values: A = B - abs(C) |
Ugh , I'm confused. How do I get this to work with phpbb3.2 ? Can I download the files that were fixed or do I have to change them one by one? |
you may want to download one of the current forks: https://github.com/Pico/phpBB-Reputation-System/network |
For phpBB 3.2.x the last version is here: https://github.com/jbreu/phpBB-Reputation-System/archive/master.zip. |
Russian translation
Incorrect reputation view link
I've been using the 1.1.0-dev pico version on my forum for a while. Could I just replace the files with yours and keep all my previous settings, votes of my members, etc.? Thanks. |
It should work, but a backup of all data is always recommended |
Fix reputation icons not showing
Fix reputation comments not being censored
Adds reputation comments to the notifications themselves
fix compatibility with phpBB 3.3.10 , i.e. the newer versions of twig contained in it.
No description provided.