Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
IPok_Web
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
IPok
IPok_Web
Commits
07338df6
Commit
07338df6
authored
6 years ago
by
Jansa Jose
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change dr
parent
3599c690
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Doctor.php
application/controllers/Doctor.php
+2
-2
doctor_editprofile.php
application/views/doctor_editprofile.php
+1
-1
No files found.
application/controllers/Doctor.php
View file @
07338df6
...
...
@@ -1295,9 +1295,9 @@ public function saveProfile()
/*encryption*/
$update_data
[
'name'
]
=
$this
->
encrypt
->
encode
(
$update_data
[
'name'
]);
//
$update_data['name'] = $this->encrypt->encode($update_data['name']);
$update_data
[
'rg'
]
=
$this
->
encrypt
->
encode
(
$update_data
[
'rg'
]);
$update_data
[
'cpf'
]
=
$this
->
encrypt
->
encode
(
$update_data
[
'cpf'
]);
//
$update_data['cpf'] = $this->encrypt->encode($update_data['cpf']);
$update_data
[
'telephone'
]
=
$this
->
encrypt
->
encode
(
$update_data
[
'telephone'
]);
$update_data
[
'gender'
]
=
$this
->
encrypt
->
encode
(
$update_data
[
'gender'
]);
$update_data
[
'cep'
]
=
$this
->
encrypt
->
encode
(
$update_data
[
'cep'
]);
...
...
This diff is collapsed.
Click to expand it.
application/views/doctor_editprofile.php
View file @
07338df6
...
...
@@ -31,7 +31,7 @@
<div
class=
"col-md-7"
>
<div
class=
"ip_edit_row"
>
<div
class=
"ip_bank_detail_frame"
>
<input
class=
"ip_bank_input"
name=
"name"
data-parsley-required=
"true"
onKeyPress=
"if(this.value.length > 40) return false;"
data-parsley-minlength=
"5"
data-parsley-pattern=
"^[a-zA-Z ]+$"
placeholder=
"
<?php
load_language
(
'name'
);
?>
"
value=
"
<?php
echo
$
this
->
encrypt
->
decode
(
$doctor_data
[
'dr_name'
])
;
?>
"
>
<input
class=
"ip_bank_input"
name=
"name"
data-parsley-required=
"true"
onKeyPress=
"if(this.value.length > 40) return false;"
data-parsley-minlength=
"5"
data-parsley-pattern=
"^[a-zA-Z ]+$"
placeholder=
"
<?php
load_language
(
'name'
);
?>
"
value=
"
<?php
echo
$
doctor_data
[
'dr_name'
]
;
?>
"
>
</div>
</div>
<div
class=
"ip_edit_row"
>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment