diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-31 19:34:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-31 19:34:03 +0000 |
commit | ec3326679595953650e76308daac2182b7d628b9 (patch) | |
tree | 3ab072825ef580887f42cc2355f77b064c1b320a /modules/import.module | |
parent | f35eb376737d9df40adb9cd1821313b98c6bda52 (diff) | |
download | brdo-ec3326679595953650e76308daac2182b7d628b9.tar.gz brdo-ec3326679595953650e76308daac2182b7d628b9.tar.bz2 |
- Improvement: made it possible to disable the comment controls and reworded some of the configuration settings.
- Improvement: removed a left-over from Drupal 4.2.0 (dead code).
- Improvement: replaced hard-coded XHTML around the XML icons with class="xml-icon".
- Improvement: removed the custom navigation menus shown at the top of the "user information page" and integrated them in the new navigation block. The "my account" link in the navigation menu will unfold. Also removed the "delete account" link/functionality (for now).
- Improvement: fix for "magic quotes" settings. Patch by Steven. I also removed check_php_settings().
- Improvement: block themability improvements. Modified patch from Ax and Steve/CodeMonkeyX.
- Fixed bug #2617: editing user information does not work. Patch by Kjartan.
Diffstat (limited to 'modules/import.module')
-rw-r--r-- | modules/import.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/import.module b/modules/import.module index f5ec428c4..fd932f3cb 100644 --- a/modules/import.module +++ b/modules/import.module @@ -748,7 +748,7 @@ function import_page_sources() { $output .= "<div style=\"margin-left: 20px;\">$feed->description</div><br />"; } - $output .= "<div style=\"text-align: right\">". l("<img src=\"". theme("image", "xml.gif") ."\" width=\"36\" height=\"14\" style=\"border: 0px;\" />", "import/fd", array("title" => t("View the list of syndicated web sites in XML format."))) ."</div><br />"; + $output .= "<div style=\"xml-icon\">". l("<img src=\"". theme("image", "xml.gif") ."\" width=\"36\" height=\"14\" style=\"border: 0px;\" />", "import/fd", array("title" => t("View the list of syndicated web sites in XML format."))) ."</div><br />"; theme("header"); theme("box", t("News feeds"), import_page_info()); |