Skip to content
Snippets Groups Projects
Commit 270902c2 authored by Alex Barth's avatar Alex Barth
Browse files

Um, brokes. Converts.

parent ca11be2e
No related branches found
No related tags found
No related merge requests found
...@@ -155,7 +155,7 @@ function feeds_fetcher_callback($importer, $feed_nid = 0) { ...@@ -155,7 +155,7 @@ function feeds_fetcher_callback($importer, $feed_nid = 0) {
*/ */
function theme_feeds_upload($variables) { function theme_feeds_upload($variables) {
$element = $variables['element']; $element = $variables['element'];
drupal_add_css(array('file' => drupal_get_path('module', 'feeds') .'/feeds.css')); drupal_add_css('file' => drupal_get_path('module', 'feeds') .'/feeds.css');
_form_set_class($element, array('form-file')); _form_set_class($element, array('form-file'));
$description = ''; $description = '';
if (!empty($element['#file_info'])) { if (!empty($element['#file_info'])) {
......
...@@ -651,7 +651,7 @@ function _feeds_ui_format_options($options) { ...@@ -651,7 +651,7 @@ function _feeds_ui_format_options($options) {
function theme_feeds_ui_overview_form($variables) { function theme_feeds_ui_overview_form($variables) {
$form = $variables['form']; $form = $variables['form'];
drupal_add_js(drupal_get_path('module', 'feeds_ui') .'/feeds_ui.js'); drupal_add_js(drupal_get_path('module', 'feeds_ui') .'/feeds_ui.js');
drupal_add_css(array('file' => drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css')); drupal_add_css('file' => drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css');
// Iterate through all importers and build a table. // Iterate through all importers and build a table.
$rows = array(); $rows = array();
...@@ -686,7 +686,7 @@ function theme_feeds_ui_overview_form($variables) { ...@@ -686,7 +686,7 @@ function theme_feeds_ui_overview_form($variables) {
function theme_feeds_ui_edit_page($variables) { function theme_feeds_ui_edit_page($variables) {
$config_info = $variables['info']; $config_info = $variables['info'];
$active_container = $variables['active']; $active_container = $variables['active'];
drupal_add_css(array('file' => drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css')); drupal_add_css('file' => drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css');
// Outer wrapper. // Outer wrapper.
$output = '<div class="feeds-settings clear-block">'; $output = '<div class="feeds-settings clear-block">';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment