View Single Post
  #3  
Old 07-18-2009, 12:42 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 17,051
BMR777 is on a distinguished road
Default RE: nadopt.php Access Denied Message for logged in users and guests

Those files shouldn't really be accessed unless the user is an admin. To fix the message logged in users see you can try finding in the file:

PHP Code:
$pagecontent getsitecontent("index");
$article_title $pagecontent[title];
$article_content $pagecontent[content];
$article_content nl2br($article_content); 
Replace With:

PHP Code:
$article_title "Your Title Here";
$article_content "Your content or error message here."
:)

Brandon
Reply With Quote