Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Majoor Error for v6.00.301

Asked Modified Viewed 3,559 times
P
ProDemonShkar
P
  • Newbie, joined since
  • Contributed 2 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

Hi digi,,

I have found 2 errors in 301

1: at administration/members.php

line 157 till 159 is this:

   if ($data['user_id'] != $userdata['user_id']) {
      echo "[ <a href='messages.php?msg_send=".$data['user_id']."' title='".$locale['u060']."'>".$locale['u053']."</a> ]\n";
   }


Should be:
   
if ($data['user_id'] != $userdata['user_id']) {
      echo "[ <a href='".BASEDIR."messages.php?msg_send=".$data['user_id']."' title='".$locale['u060']."'>".$locale['u053']."</a> ]\n";
   }


i think u forgot to set ".BASEDIR." on it becaus it is redirecting to administration/messages.php and that doesn't exist ....

2: at print.php

at line 15 it is:

if (!isset($item_id) || !isNum($item_id)) fallback(index.php);


SHould be:

if (!isset($item_id) || !isNum($item_id)) fallback("index.php");


becaus some php systems are forgetting the extension without "quetos"


and srry for my bad english i am dutch...
Edited by ProDemonShkar on 05-01-2006 13:37,
0 replies
There are no post found.

Category Forum

Bugs and Errors - 6

Labels

None yet

Statistics

  • Views 0 views
  • Posts 0 posts
  • Votes 0 votes
  • Topic users 1 member

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet