~ubuntu-drupal-devs/ubuntu-drupal-theme/6.x-brown

« back to all changes in this revision

Viewing changes to template.php

  • Committer: David Giard
  • Date: 2010-01-07 15:39:44 UTC
  • Revision ID: swe3tdave@gmail.com-20100107153944-fi7okeohi735a1zg
Added Tangerine CSS file
Modified style.css and dust.css to fit with the changes needed in tangerine.css
Fixed small bug in template.php line 370
Fixed missing base_path() in template.php line 370

Show diffs side-by-side

added added

removed removed

Lines of Context:
367
367
  if (!isset($style)) {
368
368
    $style = 'dust';
369
369
  }
370
 
  return = '<link type="text/css" rel="stylesheet" media="all" href="/'
371
 
          . drupal_get_path('theme', 'udtheme') . '/css/' . $style . '.css" />';
 
370
  return '<link type="text/css" rel="stylesheet" media="all" href="'
 
371
          . base_path() . drupal_get_path('theme', 'udtheme') . '/css/' . $style . '.css" />';
372
372
}
373
373
 
374
374
/**