phcscriptcdn 4.3.8 → 4.3.9
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 504f6f9595cf55893166be472a409fb9e300c246
|
4
|
+
data.tar.gz: d595bf68babefe237f07be7dbeae01024adb2ab7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '087a3dde24ecbdbda8e66eaa43129f60df9418fcd736bdb81989a7364c7bfac049ab427481167e3af6e4279ec06923465f79b183e2e79527369fb8046a373bf6'
|
7
|
+
data.tar.gz: 456864576ca8939c8e46182a5f4c191820a85dd2ae2a311fc0b982543e7fa4a432c59574640a39ac7e897f4c875a60c6f64a24aff8c09671c42df0498e431a08
|
@@ -42,15 +42,15 @@
|
|
42
42
|
</div>
|
43
43
|
<div class="form-group field_with_errors">
|
44
44
|
<label>Script Version</label>
|
45
|
-
<%= collection_select(:script_listing, :version_id,
|
45
|
+
<%= collection_select(:script_listing, :version_id, Phcscriptcdn::Script::Version.order('scriptversion'), :id, :scriptversion, {}, {class: "form-control"}) %>
|
46
46
|
</div>
|
47
47
|
<div class="form-group field_with_errors">
|
48
48
|
<label>Script Licence</label>
|
49
|
-
<%= collection_select(:script_listing, :licence_id,
|
49
|
+
<%= collection_select(:script_listing, :licence_id, Phcscriptcdn::Script::Licence.order('lcncname'), :id, :lcncname, {}, {class: "form-control"}) %>
|
50
50
|
</div>
|
51
51
|
<div class="form-group field_with_errors">
|
52
52
|
<label>Script Author</label>
|
53
|
-
<%= collection_select(:script_listing, :author_id,
|
53
|
+
<%= collection_select(:script_listing, :author_id, Phcscriptcdn::Script::Author.order('authorfirstname'), :id, :authorfirstname, {}, {class: "form-control"}) %>
|
54
54
|
</div>
|
55
55
|
<div class="form-group field_with_error">
|
56
56
|
<%= f.label :scriptstatus, "Script Status" %>
|
@@ -18,11 +18,11 @@
|
|
18
18
|
</div>
|
19
19
|
<div class="form-group field_with_errors">
|
20
20
|
<label>Script Version</label>
|
21
|
-
<%= collection_select(:script_url, :version_id,
|
21
|
+
<%= collection_select(:script_url, :version_id, Phcscriptcdn::Script::Version.order('scriptversion'), :id, :scriptversion, {}, {class: "form-control"}) %>
|
22
22
|
</div>
|
23
23
|
<div class="form-group field_with_errors">
|
24
24
|
<label>Script Extensions</label>
|
25
|
-
<%= collection_select(:script_url, :extension_id,
|
25
|
+
<%= collection_select(:script_url, :extension_id, Phcscriptcdn::Script::Extension.order('scriptextensionname'), :id, :scriptextension, {}, {class: "form-control"}) %>
|
26
26
|
</div>
|
27
27
|
<!-- Form Input Fields -->
|
28
28
|
|
data/lib/phcscriptcdn/version.rb
CHANGED