File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11<?php
22return array (
33 'app_version ' => 'v2.0-RC ' ,
4- 'hash_version ' => 'v2.0-RC-1-1-g8892fee ' ,
4+ 'hash_version ' => 'v2.0-RC-1-9-ge5b80ab ' ,
55);
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ public function postCreate()
7575 } else {
7676 $ location ->parent_id = e (Input::get ('parent_id ' ));
7777 }
78- $ location ->currency = e ( Input::get ('currency ' ) );
78+ $ location ->currency = Input::get ('currency ' , ' $ ' );
7979 $ location ->address = e (Input::get ('address ' ));
8080 $ location ->address2 = e (Input::get ('address2 ' ));
8181 $ location ->city = e (Input::get ('city ' ));
@@ -202,7 +202,7 @@ public function postEdit($locationId = null)
202202 } else {
203203 $ location ->parent_id = e (Input::get ('parent_id ' ,'' ));
204204 }
205- $ location ->currency = e ( Input::get ('currency ' ) );
205+ $ location ->currency = Input::get ('currency ' , ' $ ' );
206206 $ location ->address = e (Input::get ('address ' ));
207207 $ location ->address2 = e (Input::get ('address2 ' ));
208208 $ location ->city = e (Input::get ('city ' ));
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ public function postEdit()
119119 $ setting ->qr_code = e (Input::get ('qr_code ' , '0 ' ));
120120 $ setting ->barcode_type = e (Input::get ('barcode_type ' ));
121121 $ setting ->load_remote = e (Input::get ('load_remote ' , '0 ' ));
122- $ setting ->default_currency = e ( Input::get ('default_currency ' , '$ ' ) );
122+ $ setting ->default_currency = Input::get ('default_currency ' , '$ ' );
123123 $ setting ->qr_text = e (Input::get ('qr_text ' ));
124124 $ setting ->auto_increment_prefix = e (Input::get ('auto_increment_prefix ' ));
125125 $ setting ->auto_increment_assets = e (Input::get ('auto_increment_assets ' , '0 ' ));
You can’t perform that action at this time.
0 commit comments