Skip to content

Commit

Permalink
merge of r182 from trunk; remove all target=_new instances; remove wh…
Browse files Browse the repository at this point in the history
…itespace at the end of the file

git-svn-id: https://xerteonlinetoolkits.googlecode.com/svn/branches/1.8@198 912cdd6b-5c7d-d5a7-a2ba-d0f0cdb91641
  • Loading branch information
Dave Goodwin committed Oct 25, 2011
1 parent 5cfc866 commit 7c48224
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions website_code/php/properties/export_template.php
Expand Up @@ -33,13 +33,13 @@

echo "<p>" . EXPORT_DESCRIPTION . "</p>";

echo "<p>" . EXPORT_ZIP . "<a target=\"new\" href='" . $xerte_toolkits_site->site_url . url_return("export" , $_POST['template_id']) . "'>" . EXPORT_ZIP_LINK . "</a></p>";
echo "<p>" . EXPORT_ZIP . "<a href='" . $xerte_toolkits_site->site_url . url_return("export" , $_POST['template_id']) . "'>" . EXPORT_ZIP_LINK . "</a></p>";

echo "<p>" . EXPORT_ZIP_LOCAL . "<a target=\"new\" href='" . $xerte_toolkits_site->site_url . url_return("export_local" , $_POST['template_id']) . "'>" . EXPORT_ZIP_LOCAL_LINK . "</a></p>";
echo "<p>" . EXPORT_ZIP_LOCAL . "<a href='" . $xerte_toolkits_site->site_url . url_return("export_local" , $_POST['template_id']) . "'>" . EXPORT_ZIP_LOCAL_LINK . "</a></p>";

echo "<p>" . EXPORT_SCORM . "<a href='" . $xerte_toolkits_site->site_url . url_return("scorm" , $_POST['template_id']) . "'>" . EXPORT_SCORM_LINK . "</a></p>";

echo "<p>" . EXPORT_SCORM_METADATA . "<a target=\"new\" href='" . $xerte_toolkits_site->site_url . url_return("scorm_rich" , $_POST['template_id']) . "'>" . EXPORT_SCORM_METADATA_LINK . "</a></p>";
echo "<p>" . EXPORT_SCORM_METADATA . "<a href='" . $xerte_toolkits_site->site_url . url_return("scorm_rich" , $_POST['template_id']) . "'>" . EXPORT_SCORM_METADATA_LINK . "</a></p>";

}else{

Expand All @@ -48,7 +48,3 @@
}

}

?>


0 comments on commit 7c48224

Please sign in to comment.