From: SVN c. m. f. t. SWORD-A. p. <swo...@li...> - 2012-04-22 16:11:48
|
Revision: 501 http://sword-app.svn.sourceforge.net/sword-app/?rev=501&view=rev Author: richard-jones Date: 2012-04-22 16:11:41 +0000 (Sun, 22 Apr 2012) Log Message: ----------- Fix bug with "alternate" url A bug in the DepositReceipt meant that "alternate" urls were never placed into serialised deposit receipts. This is now fixed. Modified Paths: -------------- JavaServer2.0/trunk/src/main/java/org/swordapp/server/DepositReceipt.java Modified: JavaServer2.0/trunk/src/main/java/org/swordapp/server/DepositReceipt.java =================================================================== --- JavaServer2.0/trunk/src/main/java/org/swordapp/server/DepositReceipt.java 2012-04-21 17:40:26 UTC (rev 500) +++ JavaServer2.0/trunk/src/main/java/org/swordapp/server/DepositReceipt.java 2012-04-22 16:11:41 UTC (rev 501) @@ -99,7 +99,7 @@ abderaEntry.addSimpleExtension(UriRegistry.SWORD_VERBOSE_DESCRIPTION, this.verboseDescription); } - if (this.splashUri == null) + if (this.splashUri != null) { abderaEntry.addLink(this.splashUri, "alternate"); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |