• Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: Medium Medium
    • None
    • 2.9.1
    • None

      This is happening in Confluence 2.9.1, not sure if this is happening in older versions.

      If I have the global theme set to Default Theme, http://localhost/dosearchsite.action works as it should when I do a search on test:
      http://localhost/dosearchsite.action?queryString=test&where=conf_global&type=&lastModified=&contributor=&contributorUsername=

      However, if the global theme is anything else (Left Navigation, Clickr or Confluence Classic), http://localhost/dosearchsite.action returns results with duplicate querystrings.
      Searching for test results in this:
      http://localhost/dosearchsite.action?queryString=test&queryString=test&where=conf_global&type=&lastModified=&contributor=&contributorUsername=

            [CONFSERVER-13155] dosearchsite.action duplicates the querystring

            Resolving this as it is a duplicate of CONF-13119

            Mark Hrynczak (Inactive) added a comment - Resolving this as it is a duplicate of CONF-13119

            HM added a comment -

            In my case, the main.vmd file is the following.

            <span id="title-text">
            		#if ($sitemeshPage.getProperty("page.title-text-span"))
            			$sitemeshPage.getProperty("page.title-text-span")
            		#else
            			#pageTitleLink()
            		#end
            		</span>
            

            And then I replaced the above file with the following according to Mr. Hermanns instruction.

            <span id="title-text">
            			#pageTitleLink()
            		</span>
            

            However, unfortunately the duplication phenomenon still remains.

            HM added a comment - In my case, the main.vmd file is the following. <span id="title-text"> #if ($sitemeshPage.getProperty("page.title-text-span")) $sitemeshPage.getProperty("page.title-text-span") #else #pageTitleLink() #end </span> And then I replaced the above file with the following according to Mr. Hermanns instruction. <span id="title-text"> #pageTitleLink() </span> However, unfortunately the duplication phenomenon still remains.

            we have solved it. we modified the main.vmd file and confluence 2.9 changed it:

            by replacing the old

            <span id="title-text">
            			#pageTitleLink()
            		</span>
            

            with

            		<span id="title-text">
            		#if ($sitemeshPage.getProperty("page.title-text-span"))
            			$sitemeshPage.getProperty("page.title-text-span")
            		#else
            			#pageTitleLink()
            		#end
            		</span>
            

            it worked again.

            klaas hermanns added a comment - we have solved it. we modified the main.vmd file and confluence 2.9 changed it: by replacing the old <span id= "title-text" > #pageTitleLink() </span> with <span id= "title-text" > # if ($sitemeshPage.getProperty( "page.title-text-span" )) $sitemeshPage.getProperty( "page.title-text-span" ) # else #pageTitleLink() #end </span> it worked again.

            same for us, but we're using the default theme and have added some CSS styles. version 2.9.1.

            klaas hermanns added a comment - same for us, but we're using the default theme and have added some CSS styles. version 2.9.1.

              Unassigned Unassigned
              mtaylor@atlassian.com Maleko Taylor (Inactive)
              Affected customers:
              2 This affects my team
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: