Removed obsolete $ in source files

This commit is contained in:
Manuel Cillero 2017-08-29 14:13:02 +02:00
parent a39c010e06
commit e5f2b64d98
146 changed files with 836 additions and 1081 deletions

View file

@ -1,4 +1,3 @@
; $Id: custom_breadcrumbs_identifiers.info,v 1.1.2.1 2010/04/25 19:50:50 mgn Exp $
name = Custom Breadcrumbs Identifiers
package = Custom Breadcrumbs
description = Provides special identifiers for custom breadcrumbs.
@ -10,4 +9,3 @@ version = "6.x-2.0-rc1"
core = "6.x"
project = "custom_breadcrumbs"
datestamp = "1294462254"

View file

@ -1,6 +1,4 @@
<?php
// $Id: custom_breadcrumbs_identifiers.module,v 1.1.2.7 2010/12/30 18:36:25 mgn Exp $
/**
* @file
* Provide special identifiers for use with custom breadcrumbs.
@ -50,7 +48,7 @@ function custom_breadcrumbs_identifiers_cb_identifier_values($identifier, $obj)
// Optionally wrap plain text crumb in span tag with class identifiers.
if (variable_get('custom_breadcrumbs_none_span', FALSE)) {
$class = 'custom-breadcrumbs-none';
$attributes = $obj['attributes']['attributes'];
$attributes = $obj['attributes']['attributes'];
if (!empty($attributes['class'])) {
$attributes['class'] .= ' ' . $class;
}
@ -196,6 +194,3 @@ function custom_breadcrumbs_identifiers_form_alter(&$form, $form_state, $form_id
);
}
}