From 44e4e7ea453579449220829ddff98ee873ff019a Mon Sep 17 00:00:00 2001 From: Fuad Date: Wed, 6 Sep 2023 09:38:47 +0800 Subject: [PATCH] Styling (#11) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Develop: add new theme and plugins (#3) * remove unnecessary lines on print letter * sync from mobile branch (rosariosis) (#2) * Fix SQL error invalid input syntax for integer * Place currency symbol after amount for some locales * SQL use timestamp type: standard & without time zone by default * Fix typo in the Custom module README.md file * CSS add .accounting-totals, .accounting-staff-payroll-totals, .student-billing-totals classes * Add Balance widget to Print Statements * Add Staff Payroll Balance widget to Print Statements * Add Total calculation to Daily Transactions * Fix $school_id & get back unescaped value Co-authored-by: François Jacquet * add legacy theme * change search form * change input tag * config database * input styling Co-authored-by: François Jacquet * update fork 24-08-2022 (#4) * SQL convert address table name to lowercase * SQL shorten year month extract Co-authored-by: François Jacquet * new module * form input styling * prepare rebase * ignoring .idea/ --------- Co-authored-by: François Jacquet --- functions/Inputs.php | 1 - 1 file changed, 1 deletion(-) diff --git a/functions/Inputs.php b/functions/Inputs.php index 1bc2b15ff..0a81c9e22 100644 --- a/functions/Inputs.php +++ b/functions/Inputs.php @@ -124,7 +124,6 @@ function TextInput( $value, $name, $title = '', $extra = '', $div = true ) // Specify input type via $extra (email,...). $type = mb_strpos( $extra, 'type=' ) === false ? 'type="text"' : ''; - $input = '' . FormatInputTitle( $title, $id, $required );