ArticleTrader.com
  

 Main Menu

  Home
  Member Login
  Forum
  Submit Article
  RSS Feeds
  Contact Us
  About

 Services

  Article Distribution
  Link Building

 Tools

  ArticleMS
  Directory Tracker

 Categories

  Automotive
  Business
  Computers
  Entertainment
  Finance
  Food
  Health
  Home and Family
  Internet
  Legal
  Science
  Self Improvement
  Shopping
  Society
  Sports
  Technology
  Travel
  Writing





























 
Welcome! ( Login | Register )
» ArticleTrader Forums » ArticleMS » Releases » AMS2.0 Admin Settings in IE7 ...
Members Search Help

Pages: << prev 1 next >>
AMS2.0 Admin Settings in IE7 Fix
This member is currently offline Anne Kirrin
Pool


Avatar

Member Level

Group: Moderators
Posts: 1,356
Joined: Apr 11, 2006

Go to the bottom of the page Go to the top of the page

Hey all,
I noticed that in IE7 the settings tables were broken at "Comments" so I had a look at the code and found 4 quotes (") that didn't belong.

Starting at about line 1164 in the admincp_settings file under admin/a/ you will find this bit of code (you can see by the mixed colors that something is wrong):

PHP:
<input type=radio name="comments_avatar" value="" '.(!$this->settings['comments_avatar']? 'checked':'').'">Gravatar<br>
<input type=radio name="comments_avatar" value="identicon" '.($this->settings['comments_avatar'] ==  'identicon'? 'checked':'').'">Identicon<br>
<input type=radio name="comments_avatar" value="monsterid" '.($this->settings['comments_avatar'] ==  'monsterid'? 'checked':'').'">Monster ID<br>
<input type=radio name="comments_avatar" value="wavatar" '.($this->settings['comments_avatar'] ==  'wavatar'? 'checked':'').'">Wavatar<br>



At the end of each <input> is an extra quote ("). Just remove the four of them to fix the problem.

PHP:
<input type=radio name="comments_avatar" value="" '.(!$this->settings['comments_avatar']? 'checked':'').'>Gravatar<br>
<input type=radio name="comments_avatar" value="identicon" '.($this->settings['comments_avatar'] ==  'identicon'? 'checked':'').'>Identicon<br>
<input type=radio name="comments_avatar" value="monsterid" '.($this->settings['comments_avatar'] ==  'monsterid'? 'checked':'').'>Monster ID<br>
<input type=radio name="comments_avatar" value="wavatar" '.($this->settings['comments_avatar'] ==  'wavatar'? 'checked':'').'>Wavatar<br>



.........................
Anne Kirrin is in Nepal for the month of November

ArticleMSSkins.net <<:::: New
Directory of Niche Article Sites <::::: Add your article site for free!!

Last edited Nov 29, 2008, 2:52 am by Anne Kirrin
Posted Nov 29, 2008, 2:44 am
Pages:<< prev 1 next >>

Nov 22, 2009, 10:15 am

  

0.0139s