Все-же нужно вернуть добавление ссылок

Issue #22 resolved
Develops repo owner created an issue

Вырезает ссылку из подобной строки url('', array('prefix' => &$prefix)); -> url('', array('prefix' => $prefix));

Comments (2)

  1. Develops reporter
    function drupal_attributes(array $attributes = array()) {
      foreach ($attributes as $attribute => &$data) {
        $data = implode(' ', (array) $data);
        $data = $attribute . '="' . check_plain($data) . '"';
      }
      return $attributes ? ' ' . implode(' ', $attributes) : '';
    }
    
  2. Log in to comment