<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 11:55:17 UTC 2025

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Mojang Studios Jira</title>
    <link>https://bugs.mojang.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en</language>    <build-info>
        <version>9.12.2</version>
        <build-number>9120002</build-number>
        <build-date>10-01-2024</build-date>
    </build-info>


<item>
            <title>[MC-1685] Unable to write in a new blank Book and Quill after renaming it in an anvil</title>
                <link>https://bugs.mojang.com/browse/MC-1685</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;h3&gt;&lt;a name=&quot;Thebug&quot;&gt;&lt;/a&gt;The bug&lt;/h3&gt;
&lt;p&gt;When I use an anvil (repair &amp;amp; name) on &quot;Book and Quill&quot; after naming I can&apos;t write something in this book. I can sign it but it stay are not writed.&lt;/p&gt;

&lt;h3&gt;&lt;a name=&quot;Howtoreproduce&quot;&gt;&lt;/a&gt;How to reproduce&lt;/h3&gt;
&lt;ol&gt;
	&lt;li&gt;Get a new blank book and quill.&lt;/li&gt;
	&lt;li&gt;Rename it.&lt;/li&gt;
	&lt;li&gt;Try to type in it, it won&apos;t work.&lt;/li&gt;
&lt;/ol&gt;


&lt;h3&gt;&lt;a name=&quot;Codeanalysis&quot;&gt;&lt;/a&gt;Code analysis&lt;/h3&gt;
&lt;p&gt;Based on 1.11 decompiled using MCP 9.35 rc1&lt;/p&gt;

&lt;p&gt;The constructor &lt;tt&gt;net.minecraft.client.gui.GuiScreenBook.GuiScreenBook(EntityPlayer, ItemStack, boolean)&lt;/tt&gt; tests if the book has the &lt;tt&gt;tag&lt;/tt&gt; tag and if this is the case tries to use its &lt;tt&gt;pages&lt;/tt&gt; value. Because this tag does not exist an empty list is returned. The problem is that the test for &lt;tt&gt;bookTotalPages &amp;lt; 1&lt;/tt&gt; (= empty list) only sets the &lt;tt&gt;bookTotalPages&lt;/tt&gt; attribute value to 1, but does not add an empty string to the pages. Because of this the player is unable to write something.&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;&quot;&gt;&lt;b&gt;Suggested fix (1.11)&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; GuiScreenBook(EntityPlayer player, ItemStack book, &lt;span class=&quot;code-object&quot;&gt;boolean&lt;/span&gt; isUnsigned)
{
    &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.editingPlayer = player;
    &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookObj = book;
    &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookIsUnsigned = isUnsigned;

    &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (book.hasTagCompound())
    {
        NBTTagCompound nbttagcompound = book.getTagCompound();
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookPages = nbttagcompound.getTagList(&lt;span class=&quot;code-quote&quot;&gt;&quot;pages&quot;&lt;/span&gt;, 8).copy();
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookTotalPages = &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookPages.tagCount();

        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookTotalPages &amp;lt; 1)
        {
            &lt;span class=&quot;code-comment&quot;&gt;// Added the following line
&lt;/span&gt;            &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookPages.appendTag(&lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; NBTTagString(&quot;&quot;));
            &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookTotalPages = 1;
        }
    }

    &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookPages == &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt; &amp;amp;&amp;amp; isUnsigned)
    {
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookPages = &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; NBTTagList();
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookPages.appendTag(&lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; NBTTagString(&quot;&quot;));
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.bookTotalPages = 1;
    }
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="13044">MC-1685</key>
            <summary>Unable to write in a new blank Book and Quill after renaming it in an anvil</summary>
                <type id="1" iconUrl="https://bugs.mojang.com/secure/viewavatar?size=xsmall&amp;avatarId=18903&amp;avatarType=issuetype">Bug</type>
                                    <status id="5" iconUrl="https://bugs.mojang.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="Excited">Maria Lem&#243;n</assignee>
                                    <reporter username="tomekch6">tomekch6</reporter>
                        <labels>
                            <label>display-Name</label>
                            <label>item-renaming</label>
                            <label>writable_book</label>
                    </labels>
                <created>Thu, 1 Nov 2012 19:56:50 +0100</created>
                <updated>Tue, 1 May 2018 14:00:50 +0200</updated>
                            <resolved>Fri, 24 Nov 2017 11:49:07 +0100</resolved>
                                    <version>Minecraft 1.4.3</version>
                    <version>Minecraft 1.4.5</version>
                    <version>Minecraft 1.4.6</version>
                    <version>Minecraft 1.4.7</version>
                    <version>Snapshot 13w02a</version>
                    <version>Snapshot 13w02b</version>
                    <version>Minecraft 1.5</version>
                    <version>Snapshot 13w11a</version>
                    <version>Minecraft 1.5.1</version>
                    <version>Snapshot 13w16a</version>
                    <version>Minecraft 1.5.2</version>
                    <version>Snapshot 13w18b</version>
                    <version>Snapshot 13w18c</version>
                    <version>Minecraft 1.6.1</version>
                    <version>Minecraft 1.6.2</version>
                    <version>Minecraft 1.6.4</version>
                    <version>Minecraft 1.7.1</version>
                    <version>Minecraft 1.7.2</version>
                    <version>Minecraft 13w47c</version>
                    <version>Minecraft 1.7.4</version>
                    <version>Minecraft 14w02c</version>
                    <version>Minecraft 14w03a</version>
                    <version>Minecraft 14w03b</version>
                    <version>Minecraft 14w04b</version>
                    <version>Minecraft 14w05b</version>
                    <version>Minecraft 14w06a</version>
                    <version>Minecraft 14w06b</version>
                    <version>Minecraft 14w07a</version>
                    <version>Minecraft 14w08a</version>
                    <version>Minecraft 14w18b</version>
                    <version>Minecraft 14w20b</version>
                    <version>Minecraft 14w21b</version>
                    <version>Minecraft 1.7.10</version>
                    <version>Minecraft 14w30b</version>
                    <version>Minecraft 14w30c</version>
                    <version>Minecraft 14w31a</version>
                    <version>Minecraft 14w33c</version>
                    <version>Minecraft 14w34a</version>
                    <version>Minecraft 14w34b</version>
                    <version>Minecraft 14w34c</version>
                    <version>Minecraft 14w34d</version>
                    <version>Minecraft 1.8-pre1</version>
                    <version>Minecraft 1.8</version>
                    <version>Minecraft 1.8.1-pre3</version>
                    <version>Minecraft 1.8.1</version>
                    <version>Minecraft 1.8.8</version>
                    <version>Minecraft 15w36b</version>
                    <version>Minecraft 15w36c</version>
                    <version>Minecraft 15w36d</version>
                    <version>Minecraft 15w51b</version>
                    <version>Minecraft 16w03a</version>
                    <version>Minecraft 16w05b</version>
                    <version>Minecraft 16w06a</version>
                    <version>Minecraft 16w07a</version>
                    <version>Minecraft 16w07b</version>
                    <version>Minecraft 1.9 Pre-Release 2</version>
                    <version>Minecraft 1.9</version>
                    <version>Minecraft 1.9.1 Pre-Release 1</version>
                    <version>Minecraft 1.9.1 Pre-Release 2</version>
                    <version>Minecraft 1.9.1 Pre-Release 3</version>
                    <version>Minecraft 1.9.1</version>
                    <version>Minecraft 1.9.2</version>
                    <version>Minecraft 16w14a</version>
                    <version>Minecraft 1.9.3 Pre-Release 3</version>
                    <version>Minecraft 1.9.4</version>
                    <version>Minecraft 16w20a</version>
                    <version>Minecraft 16w21a</version>
                    <version>Minecraft 16w21b</version>
                    <version>Minecraft 1.10 Pre-Release 1</version>
                    <version>Minecraft 1.10 Pre-Release 2</version>
                    <version>Minecraft 1.10</version>
                    <version>Minecraft 1.10.1</version>
                    <version>Minecraft 1.10.2</version>
                    <version>Minecraft 16w32a</version>
                    <version>Minecraft 16w32b</version>
                    <version>Minecraft 16w33a</version>
                    <version>Minecraft 16w35a</version>
                    <version>Minecraft 16w40a</version>
                    <version>Minecraft 1.11</version>
                    <version>Minecraft 1.11.2</version>
                    <version>Minecraft 17w17b</version>
                    <version>Minecraft 1.12</version>
                    <version>Minecraft 1.12.1 Pre-Release 1</version>
                    <version>Minecraft 1.12.1</version>
                    <version>Minecraft 1.12.2</version>
                    <version>Minecraft 17w43a</version>
                    <version>Minecraft 17w43b</version>
                                    <fixVersion>Minecraft 17w48a</fixVersion>
                                                        <votes>57</votes>
                                    <watches>22</watches>
                                                                            <comments>
                            <comment id="416554" author="earthcomputer" created="Sun, 5 Nov 2017 14:21:00 +0100"  >&lt;p&gt;Affects 17w43b&lt;/p&gt;</comment>
                            <comment id="416553" author="earthcomputer" created="Sun, 5 Nov 2017 14:18:03 +0100"  >&lt;p&gt;Just happened to me on 1.12.2&lt;/p&gt;</comment>
                            <comment id="404712" author="niknokinater" created="Tue, 29 Aug 2017 22:09:48 +0200"  >&lt;p&gt;Confirmed for 1.12.1&lt;/p&gt;</comment>
                            <comment id="380456" author="qwertyuiopthepie" created="Fri, 28 Apr 2017 11:19:55 +0200"  >&lt;p&gt;Confirmed for 17w17b&lt;/p&gt;</comment>
                            <comment id="355098" author="leumas1960" created="Fri, 20 Jan 2017 06:32:58 +0100"  >&lt;p&gt;Confirmed for 1.11.2&lt;/p&gt;</comment>
                            <comment id="353037" author="thadius faran" created="Sat, 7 Jan 2017 22:12:10 +0100"  >&lt;p&gt;This is apparently a VERY old bug that i&apos;d very much like remedied.&lt;/p&gt;</comment>
                            <comment id="333616" author="robingravel@hotmail.com" created="Thu, 6 Oct 2016 19:23:47 +0200"  >&lt;p&gt;Happened to 16w40a.&lt;/p&gt;</comment>
                            <comment id="316863" author="__null" created="Thu, 23 Jun 2016 18:14:58 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10.2&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="316063" author="__null" created="Wed, 22 Jun 2016 19:04:43 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10.1&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="311889" author="__null" created="Wed, 8 Jun 2016 23:38:34 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="311447" author="__null" created="Wed, 8 Jun 2016 00:55:34 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10-pre2&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="309465" author="__null" created="Fri, 3 Jun 2016 03:45:07 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10-pre1&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="307784" author="__null" created="Fri, 27 May 2016 00:57:41 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;16w21b&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="307463" author="__null" created="Thu, 26 May 2016 01:04:49 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;16w21a&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="305386" author="__null" created="Thu, 19 May 2016 00:02:00 +0200"  >&lt;p&gt;Confirmed for &lt;b&gt;16w20a&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="305016" author="lightschaos" created="Tue, 17 May 2016 03:52:13 +0200"  >&lt;p&gt;The problem lies in the NBT tags. There is no NBT tag when the book is virgin but once any writing is placed, even if immediately erased before ever closing, an NBT tag is created and writing is allowed.&lt;/p&gt;</comment>
                            <comment id="304187" author="__null" created="Thu, 12 May 2016 01:07:06 +0200"  >&lt;p&gt;Confirmed for &lt;b&gt;1.9.4&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="303236" author="__null" created="Fri, 6 May 2016 02:01:10 +0200"  >&lt;p&gt;Confirmed for &lt;b&gt;1.9.3-pre3&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="296381" author="__null" created="Wed, 23 Mar 2016 19:18:16 +0100"  >&lt;p&gt;Confirmed for &lt;b&gt;1.9.1-pre3&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="288360" author="thecoosome" created="Sun, 21 Feb 2016 21:36:37 +0100"  >&lt;p&gt;Confirmed for 1.9-pre2&lt;/p&gt;</comment>
                            <comment id="286531" author="qwertyuiopthepie" created="Wed, 17 Feb 2016 11:26:58 +0100"  >&lt;p&gt;Confirmed for 16w07b.&lt;/p&gt;</comment>
                            <comment id="248321" author="qmagnet" created="Thu, 10 Sep 2015 14:00:31 +0200"  >&lt;p&gt;Confirmed for 15w36d&lt;/p&gt;</comment>
                            <comment id="223315" author="v3monsta" created="Mon, 30 Mar 2015 22:24:20 +0200"  >&lt;p&gt;Just to add to this, the only way around this bug is to create a page 2 by clicking on the arrow, then going back to page 1 and start typing.&lt;/p&gt;</comment>
                            <comment id="196396" author="megaalex" created="Tue, 2 Sep 2014 15:36:02 +0200"  >&lt;p&gt;Confirmed for 1.8.&lt;/p&gt;</comment>
                            <comment id="183099" author="dnahelix (helixsoft)" created="Thu, 31 Jul 2014 17:32:43 +0200"  >&lt;p&gt;Confirmed for 14w31a.&lt;/p&gt;</comment>
                            <comment id="182094" author="skylinerw" created="Wed, 30 Jul 2014 03:48:11 +0200"  >&lt;p&gt;Confirmed for 14w30c. &lt;/p&gt;</comment>
                            <comment id="158587" author="feronzed" created="Sun, 18 May 2014 22:27:33 +0200"  >&lt;p&gt;Still applies to snapshot 14w20b.&lt;/p&gt;</comment>
                            <comment id="142152" author="iamdarkyoshi" created="Fri, 21 Feb 2014 04:21:04 +0100"  >&lt;p&gt;I found a temporary fix: when using /give, add a page with nothing in it, and the book is writable.&lt;/p&gt;</comment>
                            <comment id="142139" author="justinwzig1" created="Fri, 21 Feb 2014 03:21:51 +0100"  >&lt;p&gt;This also applies to ANY tag added to the book with the /give command. I tested this in 14w08a, but it also applies to earlier snapshots.&lt;/p&gt;</comment>
                            <comment id="139475" author="iamdarkyoshi" created="Mon, 10 Feb 2014 02:34:04 +0100"  >&lt;p&gt;Confirmed in 14w06b. I am making a teleporter on my map using a writable book and /clear, but i cannot give the player a renamed book. this is annoying.&lt;/p&gt;</comment>
                            <comment id="136682" author="buckztabu" created="Fri, 31 Jan 2014 04:46:17 +0100"  >&lt;p&gt;Still happens in 14w05a. If the book and quill has been renamed or if it&apos;s enchanted with the /give command, it can&apos;t be edited.&lt;/p&gt;</comment>
                            <comment id="132508" author="beminlp" created="Sat, 18 Jan 2014 06:42:34 +0100"  >&lt;p&gt;Still in 14w03b.&lt;/p&gt;</comment>
                            <comment id="131334" author="fayti1703" created="Tue, 14 Jan 2014 16:27:32 +0100"  >&lt;p&gt;Still happens in 14w02c, but also works with ANY Nbt-tag when pages:[] does not exist/is empty.&lt;/p&gt;</comment>
                            <comment id="120477" author="gdulik" created="Fri, 22 Nov 2013 12:37:36 +0100"  >&lt;p&gt;Bug still appears in snapshot 13w47c.&lt;/p&gt;</comment>
                            <comment id="93498" author="bljat" created="Mon, 22 Jul 2013 00:06:47 +0200"  >&lt;p&gt;Reopened with a better description. Missing detail was the book needed to be unused.&lt;/p&gt;</comment>
                            <comment id="93496" author="megaalex" created="Sun, 21 Jul 2013 23:56:51 +0200"  >&lt;p&gt;Confirmed for 1.6.2 SP/MP, the issue is not resolved.&lt;/p&gt;</comment>
                            <comment id="67446" author="willco2" created="Sun, 19 May 2013 23:19:14 +0200"  >&lt;p&gt;Confirmed for 1.5.2 in multiplayer. Please fix!&lt;/p&gt;</comment>
                            <comment id="62675" author="chadgarion25" created="Mon, 22 Apr 2013 18:14:54 +0200"  >&lt;p&gt;Confirmed in Snapshot 13w16a. I&apos;ve never had this problem before now and never knew it&apos;s been going on for so long.&lt;/p&gt;</comment>
                            <comment id="54000" author="cubethethird" created="Sat, 16 Mar 2013 13:12:49 +0100"  >&lt;p&gt;@Alexander: see &lt;a href=&quot;https://bugs.mojang.com/browse/MC-1578&quot; title=&quot;Cannot move backwards in Books while writing / Cannot copy anything from the book&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-1578&quot;&gt;&lt;del&gt;MC-1578&lt;/del&gt;&lt;/a&gt; for information on that issue.&lt;/p&gt;</comment>
                            <comment id="53994" author="bl4cksh33p" created="Sat, 16 Mar 2013 12:55:52 +0100"  >&lt;p&gt;As a small sidenote: It would be great if you could use the cursorkeys to move the input cursor, when you need to edit something on top you have to delete all text and type it again. &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/sad.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="31447" author="league" created="Sat, 29 Dec 2012 20:57:23 +0100"  >&lt;p&gt;can confirm. sucks&lt;/p&gt;</comment>
                            <comment id="24956" author="cubethethird" created="Sun, 25 Nov 2012 23:48:24 +0100"  >&lt;p&gt;Can confirm.&lt;/p&gt;</comment>
                            <comment id="23894" author="ts" created="Wed, 21 Nov 2012 18:29:26 +0100"  >&lt;p&gt;This still applies in 1.4.5.&lt;/p&gt;

&lt;p&gt;Also, it does not apply to books that have already been written in. Only new, un-edited books.&lt;/p&gt;</comment>
                            <comment id="17314" author="daedalusyoung" created="Fri, 2 Nov 2012 19:58:37 +0100"  >&lt;p&gt;Could somebody please edit the title of this issue?&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;edit&amp;#93;&lt;/span&gt; Thank you very much, it&apos;s easier to find now &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="19638">MC-6864</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="19892">MC-7114</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="27281">MC-12441</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="44966">MC-25551</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="46121">MC-26543</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="46236">MC-26635</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="57329">MC-35490</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="69894">MC-44781</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="70331">MC-45113</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="72935">MC-47294</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73839">MC-48159</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="74732">MC-48993</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="75291">MC-49520</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="81122">MC-54775</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="81588">MC-55184</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="81666">MC-55254</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="82013">MC-55557</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="83452">MC-56581</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="89358">MC-62030</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="102057">MC-74060</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="103685">MC-75504</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="120035">MC-87670</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="120036">MC-87671</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="130720">MC-95157</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="132705">MC-96292</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="140873">MC-102008</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="145362">MC-104669</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="158383">MC-111742</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="163895">MC-113996</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="176249">MC-119616</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="177258">MC-119870</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="13339">MC-1958</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="13439">MC-2048</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10103">
                    <name>Relates</name>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="115188">MC-84005</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 24 Oct 2014 20:56:00 +0200</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10500" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Confirmation Status</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10303"><![CDATA[Confirmed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_11700" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_11100" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Linked</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i0gly7:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    </customfields>
    </item>
</channel>
</rss>