Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Here's the code we're using:

Code Block
javajava
titleDoesn't work right!
java
<ul>
   <li><a href="<s:url action="Welcome?request_locale=en"/>">English</a></li>
   <li><a href="<s:url action="Welcome?request_locale=ja"/>">Japanese</a></li>
   <li><a href="<s:url action="Welcome?request_locale=ru"/>">Russian</a></li>
</ul>

...

The URL tag isn't meant to be used with a query string. The best way to write this would be:

java
Code Block
java
titleUse the param tag instead
java
<s:url action="Welcome">
 <s:param name="request_locale" value="en" />
</s:url>

...