Ok, dug into it a little bit more, and I found this...
- Code: Select all
<form action="https://www.wowarmory.com/login.xml" name="loginRedirect" id="loginRedirect" method="post">
<input value="1" name="passThrough" id="passThrough" type="hidden">
<input value="/guild-info.xml?r=Blackwater+Raiders&n=Sovereign&p=1" name="redirectUrl" id="redirectUrl" type="hidden">
<a alt="" href="javascript: document.loginRedirect.submit()">
<div style="background: transparent url(../images/tab-key-3.gif) no-repeat scroll left top; display: block; float: left; vertical-align: baseline; margin-top: -2px; width: 25px; height: 23px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; margin-right: 4px;">
</div>Log In
</a>
</form>
I tried to change it to this;
- Code: Select all
<form action="https://www.wowarmory.com/login.xml" name="loginRedirect" id="loginRedirect" method="post">
<input value="1" name="passThrough" id="passThrough" type="hidden">
<input value="http://www.guildsovereign.com/" name="redirectUrl" id="redirectUrl" type="hidden">
<a alt="" href="javascript: document.loginRedirect.submit()">
<div style="background: transparent url(http://www.wowarmory.com/images/tab-key-3.gif) no-repeat scroll left top; display: block; float: left; vertical-align: baseline; margin-top: -2px; width: 25px; height: 23px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; margin-right: 4px;">
</div>Log In
</a>
</form>
When this runs however, it redirects me to:
www.wowarmory.comhttp%2F%2Fwww.guildsovereign.com
which is obviously a very bad link.
I tried to see if I could find a link interceptor like there is on the forums, but couldn't find any links to external sources. Example of forum link:
http://forums.worldofwarcraft.com/interceptor.html?interceptedURL=http://www.google.com
I might try to brainstorm a little bit more here and see if i can find anything that will work. Oh, I even tried to see if logging into the forums would log you into the armory, I don't know why I tried it, other then hope, knowing that the cookie wouldn't transfer across domains.