MyBB Hacks

Full Version: XThreads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I remove security check? Not the first time I've had problems with it, would love to just kill it.
In admin/inc/functions.php, after

PHP Code:
function check_template($template)
{

add

PHP Code:
return false;

I think you can as well use:

PHP Code:
<?=($filters_set['style']['active']['Gyaru(o)'])?>


Have done it some times IIRC.

Thanks Z!

Sama, your trick didn't work for me Frown
Wouldn't be surpriced it is caused by a plugin for me, I have too many Tongue
thanks for the update, zinga.
Can't see to find the documentation about this, how do I disable thread filtering from the url?

I mean, I remember reading adding something like xt_disable_filtering=1 but can't find it anymore...
Never minds, got it. It is under the forum options.

Now I have a issue with the moderation tools.
Thread field info:
key: status
Applicable Forums: Contact forum, Support forum
Input Field Type: Listbox
Editable by / Required Field?: Everyone (required)
Value list:

Code:
Nuevo
Solucionado
Ignorado

Default Value: Nuevo

Moderation Tool:
Applicable Forums: Contact forum, Support forum
Close thread: Yes
Clean redirections: Yes
Modify Custom Thread Field(s):

Code:
status=<if {VALUE} == 'Solucionado' then>Ignorado<else>Solucionado</if>


But somehow it is not working, the status value is always "Nuevo" after running the tool over the thread.


Somehow my own plugin seems to be the cause for this...
http://mods.mybb.com/view/ougc-moderatio...http://mods.mybb.com/view/ougc-moderation-tools-p

Any idea Zinga Burga?
I changed the hook priority to -999 and everything seems to work now.
Yeah, the custom moderation thing is a real mess.
Getting an odd issue simply adding a new custom field on somebody else's test server. Any ideas anybody? I haven't seen this before and I've tested locally with no issues...

Code:
Fatal error: Call to undefined function xthreads_evalcache_pfrating1() in /home/web/andrewshemo/testforum/inc/plugins/xthreads.php on line 612


Field details:

Title *

Rating Field 1

Key *

pfrating1

Applicable Forums

Product Reviews

Input Field Type

Listbox

Editable by / Required Field?

Everyone (required)

Values List

1
2
3
4
5

Custom Modify Error:

<if intval({VALUE}) < 1 or intval({VALUE}) > 5 then>
  You must enter a value between 1 and 5.
</if>

Reference URL's