This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

User Submitted Article bug in submission queue


avatar
ReviewStud 135
From: -
User Submitted Article bug in submission queue

I've across a little user submission error. Whether it is a CT bug or only a problem on my site, I wanted to bring it up.

The problem seems to be when a register user submits an article to my site it goes into the "Submission Queue" for approval by an administrator. Once there, I go to "edit" the article and from what I can see several channel titles and field titles have been made into hyperlinks. This seems to only be happening in the user submitted articles, not any of the ones pulled from RSS feeds.

I've attached a screen shot of what is happening.

Thanks,
Submission_error

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: User Submitted Article bug in submission queue
avatar
OP 135
From: -
Found the problem. I was missing the "\ in $input_newsstory_sourceid . "\">" .

Once again, thank very much for your help.
1 Re: User Submitted Article bug in submission queue
avatar
Editor
0
From: -
Here a screenshot that highlight this section
Admineditqueuestory
1 Re: User Submitted Article bug in submission queue
avatar
OP 135
From: -
I don't have that code in this document. I did try adding it at line 199, but there wasn't any change. Even submitted another test article without any luck.

If it helps, I am running CE 1.0.2.
1 Re: User Submitted Article bug in submission queue
avatar
Editor
0
From: -
You should find the code around at line 198-201
1 Re: User Submitted Article bug in submission queue
avatar
OP 135
From: -
Found the file, but I don't have that line of code to replace.
1 Re: User Submitted Article bug in submission queue
avatar
Editor
0
From: -
/cadmin/news
1 Re: User Submitted Article bug in submission queue
avatar
OP 135
From: -
What directory is that file located? I can't seem to find it.
1 Re: User Submitted Article bug in submission queue
avatar
Editor
0
From: -
Open admineditqueuestory.php and replace:

      if( $input_newsstory_sourceid )
{
echo "<a href=\"index.php?action=manageusers&amp;opts=edituser-" . $input_newsstory_sourceid . ">" . $words_news[ 'VIEW_PROFILE' ] . "</a><br /><br />";
}


with:

        if( $input_newsstory_sourceid )
{
echo "<a href=\"index.php?action=manageusers&amp;opts=edituser-" . $input_newsstory_sourceid . "\">" . $words_news[ 'VIEW_PROFILE' ] . "</a><br /><br />";
}


Also, please post bug reports next time to the  bug tracker

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.