Skip to content

Commit

Permalink
Bugfixing alternate tags. See JILS-43
Browse files Browse the repository at this point in the history
  • Loading branch information
bentasker committed Apr 24, 2016
1 parent 4c58f37 commit d4e93ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/html/component-issues.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo $component->pkey;?> / <?php echo htmlspecialchars($component->cname); ?></title>
<link rel="alternate" type="application/json" href="<?php echo qs2sef("comp={$component->ID}&proj={$component->pkey}");?>">
<link rel="alternate" type="application/json" href="<?php echo qs2sef("comp={$component->ID}&proj={$component->pkey}",".json");?>">
<?php require 'head-includes.php'; ?>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion templates/html/version-issues.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Version: <?php echo htmlspecialchars($version->vname); ?></title>
<link rel="alternate" type="application/json" href="<?php echo qs2sef("vers={$version->ID}&proj={$project->pkey}",".json");?>">
<link rel="alternate" type="application/json" href="<?php echo qs2sef("vers={$version->ID}&proj={$version->pkey}",".json");?>">

<?php require 'head-includes.php'; ?>
</head>
Expand Down

0 comments on commit d4e93ce

Please sign in to comment.