mirror of
https://github.com/bryangerlach/rdgen.git
synced 2025-11-29 08:33:23 +00:00
fix the & symbol in company name
This commit is contained in:
2
.github/workflows/generator-macos.yml
vendored
2
.github/workflows/generator-macos.yml
vendored
@@ -86,7 +86,7 @@ jobs:
|
|||||||
|
|
||||||
build-for-macos:
|
build-for-macos:
|
||||||
name: ${{ matrix.job.target }}
|
name: ${{ matrix.job.target }}
|
||||||
runs-on: macos-latest
|
runs-on: ${{ matrix.job.os }}
|
||||||
needs: [generate-bridge]
|
needs: [generate-bridge]
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ def generator_view(request):
|
|||||||
compname = form.cleaned_data['compname']
|
compname = form.cleaned_data['compname']
|
||||||
if not compname:
|
if not compname:
|
||||||
compname = "Purslane Ltd"
|
compname = "Purslane Ltd"
|
||||||
|
compname = compname.replace("&","\\&")
|
||||||
permPass = form.cleaned_data['permanentPassword']
|
permPass = form.cleaned_data['permanentPassword']
|
||||||
theme = form.cleaned_data['theme']
|
theme = form.cleaned_data['theme']
|
||||||
themeDorO = form.cleaned_data['themeDorO']
|
themeDorO = form.cleaned_data['themeDorO']
|
||||||
|
|||||||
Reference in New Issue
Block a user