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?

Entities

Asked Modified Viewed 2,718 times
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Junior Member

Im getting &#39 instead of this '

I cant seem to find that problem....
0 replies

14 posts

F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Where? How?
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

here - http://tancurrom.homelinux.org/
and everywhere, check the forums shoutbox sigs on profiles
0 replies
K
Ken
K
Ken 10
No Support by PM. Please use the forum.
  • Senior Member, joined since
  • Contributed 713 posts on the community forums.
  • Started 43 threads in the forums
answered
Senior Member

I can't see the problem. I think it's maybe a setting in your browser. Maybe your browser (IE or Firefox?) is using wrong character set.
Edited by Ken on 15-12-2006 13:29,
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Are you using the cvs maincore.php?
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

well, theres mods in it , but i think so ish

im using firefox3/2
Edited by tancurrom on 15-12-2006 15:35,
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

what does the function stripinput() in maincore.php look like?
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

// Strip Input Function, prevents HTML in unwanted places
function stripinput($text) {
   if (QUOTES_GPC) $text = stripslashes($text);
   $search = array("&amp;", "\"", "'", "\\", '\"', "\'", "<", ">", "&amp;nbsp;");
   $replace = array("&amp;amp;", "&amp;quot;", "&amp;#39;", "&amp;#92;", "&amp;quot;", "&amp;#39;", "&amp;lt;", "&amp;gt;", " ");
   $text = str_replace($search, $replace, $text);
   return $text;
}
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Ah i see, you've picked up the new function, but the cvs was wrong at the time, it should be

// Strip Input Function, prevents HTML in unwanted places
function stripinput($text) {
   if (QUOTES_GPC) $text = stripslashes($text);
   $search = array("&", "\"", "'", "\\", '\"', "\'", "<", ">", "&nbsp;");
   $replace = array("&amp;", "&quot;", "&#39;", "&#92;", "&quot;", "&#39;", "&lt;", "&gt;", " ");
   $text = str_replace($search, $replace, $text);
   return $text;
}
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

still not work :(
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

it might have something to do with magic_quote
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

It wont fix anything you have posted, but new posts should be ok
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

well, your ok to log now
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

oh, i think that has general fixed it now, theres just mods that ordering has messed it
0 replies
T
tancurrom
T
i67.photobucket.com/albums/h286/tancurrom/sig_or_avatar/tancurromflash.jpg

The problems with minorities is disputing the reputation created by few.

.MY site.
.MY blog.
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Junior Member

NOPE I TAKE THAT BACK. It works sometimes (the shoutbox) but other times (guestbook & forums) the problem is there. I have tried to find why, but i really dont know.

http://tancurrom.freehostia.com/
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 14 posts
  • Votes 0 votes
  • Topic users 3 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet