Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
derDenty

Alle Beiträge als gelesen markieren (Link ändern)

Recommended Posts

Wenn ich in meinem Board auf:

Alle Beiträge als gelesen markieren

klicke,werde ich zurück ins Portal verlinkt.

Wo und wie kann ich das ändern,das ich ins Forum und *nicht* ins Portal nach klicken dieses Links komme?

Gruß Denty

Share this post


Link to post

Login.php

Für das gesamte Forum:

  function markboard()

  {

  global $ibforums, $DB, $std;

  if(! $ibforums->member['id'])

  {

  $std->Error( array( LEVEL => 1, MSG => 'no_guests') );

  }

  $DB->query("UPDATE ibf_members SET last_visit='".time()."', last_activity='".time()."' WHERE id='".$ibforums->member['id']."'");

  $std->boink_it($ibforums->base_url."act=idx");

  exit();

}

Bei einzelne Foren ist es die gleiche Datei, etwas tiefer

        if ( ($f['parent_id'] > 0) AND ($ibforums->input['i'] != 1) )

        {

        //--------------------------------------

        // Its a sub forum, lets go redirect to parent forum

        //--------------------------------------

        $std->boink_it($ibforums->base_url."act=SF&f=".$f['parent_id']);

        }

        else

        {

        $std->boink_it($ibforums->base_url."act=idx");

        }

        exit();

    }

Sollte es gewesen sein. :)

Share this post


Link to post

Eigentlich hat es mich net überrascht,aber ich hätte ewig danach gesucht und war nur begeistert,das eine so schnelle Antwort kam.

Ich bin halt immer Dankbar für alles und schätze das auch. :)

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×