diff options
author | Freya Murphy <freya@freyacat.org> | 2024-03-30 16:36:54 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-03-30 16:36:54 -0400 |
commit | 1f647374a8cdf3bc5c2d29ff8be277b027925c8c (patch) | |
tree | 9fdf42d250edb941de13ecd1aab9185ba2b30b00 /db/rest/util/_api_validate_text.sql | |
parent | rename views to _views (diff) | |
download | xssbook2-1f647374a8cdf3bc5c2d29ff8be277b027925c8c.tar.gz xssbook2-1f647374a8cdf3bc5c2d29ff8be277b027925c8c.tar.bz2 xssbook2-1f647374a8cdf3bc5c2d29ff8be277b027925c8c.zip |
post comments, refactor post loading, hide load more btn
Diffstat (limited to '')
-rw-r--r-- | db/rest/util/_api_validate_text.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/db/rest/util/_api_validate_text.sql b/db/rest/util/_api_validate_text.sql index e4a6a7b..ff3a227 100644 --- a/db/rest/util/_api_validate_text.sql +++ b/db/rest/util/_api_validate_text.sql @@ -33,6 +33,7 @@ BEGIN _detail => _column, _hint => _min || '' ); + RETURN FALSE; END IF; IF _max IS NOT NULL AND _length > _max THEN @@ -41,6 +42,7 @@ BEGIN _detail => _column, _hint => _max || '' ); + RETURN FALSE; END IF; RETURN TRUE; |