Skip to content

Commit 8f3c2c1

Browse files
committed
fix: rimozione blocco conteggio caratteri descrizione articolo
1 parent 8881e89 commit 8f3c2c1

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

modules/articoli/add.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
<div class="row">
4444
<div class="col-md-12">
45-
{[ "type": "textarea", "label": "<?php echo tr('Descrizione'); ?>", "name": "descrizione", "required": 1, "value": "<?php echo htmlentities(filter('descrizione')) ?: ''; ?>", "maxlength": "255", "charcounter": 1 ]}
45+
{[ "type": "textarea", "label": "<?php echo tr('Descrizione'); ?>", "name": "descrizione", "required": 1, "value": "<?php echo htmlentities(filter('descrizione')) ?: ''; ?>", "charcounter": 1 ]}
4646
</div>
4747

4848
<div class="col-md-6">

modules/articoli/edit.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
'name' => 'descrizione',
9090
'required' => 1,
9191
'value' => $articolo->getTranslation('title'),
92-
'maxlength' => 255,
9392
'charcounter' => 1,
9493
]);
9594
?>

update/2_6_2.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- RIpristino tipo text alla descrizione articolo
2+
ALTER TABLE `mg_articoli_lang` CHANGE `title` `title` TEXT NOT NULL;

0 commit comments

Comments
 (0)