From 700b5d985a7cd633e6a31535aaed8cc57c868415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 31 Jan 2011 15:45:42 +0100 Subject: [PATCH] Simplify HTML --- libraries/engines/pbms.lib.php | 17 +++++------------ libraries/engines/pbxt.lib.php | 17 +++++------------ 2 files changed, 10 insertions(+), 24 deletions(-) diff --git a/libraries/engines/pbms.lib.php b/libraries/engines/pbms.lib.php index 48a110453..eabfdd1ce 100644 --- a/libraries/engines/pbms.lib.php +++ b/libraries/engines/pbms.lib.php @@ -93,18 +93,11 @@ class PMA_StorageEngine_pbms extends PMA_StorageEngine $output = '

' . sprintf('Documentation and further information about PBMS can be found on %sThe PrimeBase Media Streaming home page%s.', '', '') . '

' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n"; + . '

' . __('Related Links') . '

' . "\n" + . '' . "\n"; return $output; } diff --git a/libraries/engines/pbxt.lib.php b/libraries/engines/pbxt.lib.php index 7f8fc1122..9b5c05c17 100644 --- a/libraries/engines/pbxt.lib.php +++ b/libraries/engines/pbxt.lib.php @@ -124,18 +124,11 @@ class PMA_StorageEngine_pbxt extends PMA_StorageEngine $output = '

' . sprintf('Documentation and further information about PBXT can be found on the %sPrimeBase XT Home Page%s.', '', '') . '

' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n" - . '' . "\n"; + . '

' . __('Related Links') . '

' . "\n" + . '' . "\n"; return $output; }