Skip to content

Commit

Permalink
on building nightly, of course also install composer dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kaufmann <[email protected]>
  • Loading branch information
d00p committed Nov 15, 2023
1 parent c9291df commit 7e0073f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/build-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,16 @@ jobs:
with:
php-version: '7.4'
tools: composer:v2
extensions: mbstring, xml, ctype, pdo_mysql, mysql, curl, json, zip, session, filter, posix, openssl, fileinfo, bcmath, gmp, gnupg

- name: Install composer dependencies
run: composer install --no-dev

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'

- name: Install npm dependencies
run: npm install

Expand Down
2 changes: 1 addition & 1 deletion lib/Froxlor/Validate/Form/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public static function validateFormFieldTextarea($fieldname, $fielddata, $newfie
if (preg_match($fielddata['string_regexp'], $newfieldvalue)) {
$returnvalue = true;
}
} else if (preg_match('/^[^\0]*$/', $newfieldvalue)) {
} elseif (preg_match('/^[^\0]*$/', $newfieldvalue)) {
$returnvalue = true;
}

Expand Down

0 comments on commit 7e0073f

Please sign in to comment.