Skip to content
Snippets Groups Projects
Commit 31584f02 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2185037 by malionek: General punctuation errors.

parent bf8f70b0
No related branches found
No related tags found
No related merge requests found
......@@ -975,7 +975,7 @@ function _addFile($p_filename, &$p_header, $p_add_dir, $p_remove_dir)
}
// ----- Calculate the stored filename
$p_filename = $this->_translateWinPath($p_filename, false);;
$p_filename = $this->_translateWinPath($p_filename, false);
$v_stored_filename = $p_filename;
if (strcmp($p_filename, $p_remove_dir) == 0) {
return true;
......@@ -1038,7 +1038,7 @@ function _addString($p_filename, $p_string)
}
// ----- Calculate the stored filename
$p_filename = $this->_translateWinPath($p_filename, false);;
$p_filename = $this->_translateWinPath($p_filename, false);
if (!$this->_writeHeaderBlock($p_filename, strlen($p_string),
time(), 384, "", 0, 0))
......
......@@ -91,7 +91,7 @@ public function render(array $css_assets) {
// assets: output a LINK tag for a file CSS asset.
if (count($css_assets) <= 31) {
$element = $link_element_defaults;
$element['#attributes']['href'] = file_create_url($css_asset['data']) . $query_string_separator . $query_string;;
$element['#attributes']['href'] = file_create_url($css_asset['data']) . $query_string_separator . $query_string;
$element['#attributes']['media'] = $css_asset['media'];
$element['#browsers'] = $css_asset['browsers'];
$elements[] = $element;
......
......@@ -97,7 +97,7 @@ public function buildForm(array $form, array &$form_state) {
'#options' => $zones,
);
$configurable_timezones = $system_date->get('timezone.user.configurable');;
$configurable_timezones = $system_date->get('timezone.user.configurable');
$form['timezone']['configurable_timezones'] = array(
'#type' => 'checkbox',
'#title' => t('Users may set their own time zone.'),
......
......@@ -88,7 +88,7 @@ function setUp() {
'entity_type' => $entity_type,
'bundle' => $entity_type,
))->save();
$this->instance[$entity_type] = entity_load('field_instance', $entity_type . '.' . $entity_type . '.' . $this->field_name);;
$this->instance[$entity_type] = entity_load('field_instance', $entity_type . '.' . $entity_type . '.' . $this->field_name);
entity_create('field_entity', array(
'name' => $this->untranslatable_field_name,
......
......@@ -100,7 +100,7 @@ public function buildForm(array $form, array &$form_state) {
// display name.
$modules = array();
foreach ($this->moduleHandler->getImplementations('permission') as $module) {
$modules[$module] = $module_info[$module]->info['name'];;
$modules[$module] = $module_info[$module]->info['name'];
}
asort($modules);
......
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