Simplify HTML

This commit is contained in:
Michal Čihař
2011-01-31 15:45:42 +01:00
parent d5d329850e
commit 700b5d985a
2 changed files with 10 additions and 24 deletions

View File

@@ -93,18 +93,11 @@ class PMA_StorageEngine_pbms extends PMA_StorageEngine
$output = '<p>' $output = '<p>'
. sprintf('Documentation and further information about PBMS can be found on %sThe PrimeBase Media Streaming home page%s.', '<a href="' . PMA_linkURL('http://www.blobstreaming.org/') . '" target="_blank">', '</a>') . sprintf('Documentation and further information about PBMS can be found on %sThe PrimeBase Media Streaming home page%s.', '<a href="' . PMA_linkURL('http://www.blobstreaming.org/') . '" target="_blank">', '</a>')
. '</p>' . "\n" . '</p>' . "\n"
. '<table id="PBMS_Related_Links" >' . "\n" . '<h3>' . __('Related Links') . '</h3>' . "\n"
. '<tr>' . "\n" . '<ul>' . "\n"
. '<td>' . "\n" . '<li><a href="' . PMA_linkURL('http://bpbdev.blogspot.com/') . '" target="_blank">' . __('The PrimeBase Media Streaming Blog by Barry Leslie') . '</a></li>' . "\n"
. '<p>' . "\n" . '<li><a href="' . PMA_linkURL('http://www.primebase.com/xt') . '" target="_blank">' . __('PrimeBase XT Home Page') . '</a></li>' . "\n"
. '<strong><font size="2"><b>' . __('Related Links') . '</b></font></strong>' . "\n" . '</ul>' . "\n";
. '<br>' . "\n"
. '<a href="' . PMA_linkURL('http://bpbdev.blogspot.com/') . '" target="_blank">' . __('The PrimeBase Media Streaming Blog by Barry Leslie') . '</a><br><br>' . "\n"
. '<a href="' . PMA_linkURL('http://www.primebase.com/xt') . '" target="_blank">' . __('PrimeBase XT Home Page') . '</a><br><br>' . "\n"
. '</font>' . "\n"
. '</td>' . "\n"
. '</tr>' . "\n"
. '</table>' . "\n";
return $output; return $output;
} }

View File

@@ -124,18 +124,11 @@ class PMA_StorageEngine_pbxt extends PMA_StorageEngine
$output = '<p>' $output = '<p>'
. sprintf('Documentation and further information about PBXT can be found on the %sPrimeBase XT Home Page%s.', '<a href="' . PMA_linkURL('http://www.primebase.com/xt/') . '" target="_blank">', '</a>') . sprintf('Documentation and further information about PBXT can be found on the %sPrimeBase XT Home Page%s.', '<a href="' . PMA_linkURL('http://www.primebase.com/xt/') . '" target="_blank">', '</a>')
. '</p>' . "\n" . '</p>' . "\n"
. '<table id="PBMS_Related_Links" >' . "\n" . '<h3>' . __('Related Links') . '</h3>' . "\n"
. '<tr>' . "\n" . '<ul>' . "\n"
. '<td>' . "\n" . '<li><a href="' . PMA_linkURL('http://pbxt.blogspot.com/') . '" target="_blank">' . __('The PrimeBase XT Blog by Paul McCullagh') . '</a></li>' . "\n"
. '<p>' . "\n" . '<li><a href="' . PMA_linkURL('http://www.blobstreaming.org/') . '" target="_blank">' . __('The PrimeBase Media Streaming (PBMS) home page') . '</a></li>' . "\n"
. '<strong><font size="2"><b>' . __('Related Links') . '</b></font></strong>' . "\n" . '</ul>' . "\n";
. '<br>' . "\n"
. '<a href="' . PMA_linkURL('http://pbxt.blogspot.com/') . '" target="_blank">' . __('The PrimeBase XT Blog by Paul McCullagh') . '</a><br><br>' . "\n"
. '<a href="' . PMA_linkURL('http://www.blobstreaming.org/') . '" target="_blank">' . __('The PrimeBase Media Streaming (PBMS) home page') . '</a>.<br><br>' . "\n"
. '</font>' . "\n"
. '</td>' . "\n"
. '</tr>' . "\n"
. '</table>' . "\n";
return $output; return $output;
} }