Nie zdążyłem już dopisać do poprzedniego tematu już
Mam już tą aplikacje
I w instrukcji piszę Open / admin / sources / classes / bbcode / custom / tbHideContent.php
tbHideContent.php tylko że tego pliku nie ma i nie wiem czy to moja wina czy go jakoś trzeba stworzyć
Przesyłam resztę z instrukcji może ma ktoś ten plik na serwie...
Znajdź
$existing[ $this->topic['tid'] ] = ( intval($hideCheck['found']) > 0 ) ? true : false;
Dodaj Poniżej :
// [EN31] Ajax Thanks v1.0.3
if ( $this->settings['en30_ajaxthanks'] && $this->settings['en30_ajaxthankshidehack'] && ! $existing[ $this->topic['tid'] ] )
{
$this->DB->build( array( 'select' => 'thankers', 'from' => 'posts', 'where' => 'topic_id='.$this->topic['tid'] ) );
$this->DB->execute();
while( $row = $this->DB->fetch() )
{
if ( $row['thankers'] != "" )
{
$thankers = unserialize( stripslashes( $row['thankers'] ) );
foreach ( $thankers as $id => $name )
{
if ( $id == $this->memberData['member_id'] )
{
$existing[ $this->topic['tid'] ] = true;
break;
}
}
}
if ( $existing[ $this->topic['tid'] ] )
{
break;
}
}
}
// [EN31] Ajax Thanks v1.0.3