| 
					
				 | 
			
			
				@@ -19,6 +19,8 @@ class App extends Base 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         $sex = Dever::input('gender');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         $city = Dever::input('city');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         $mobile = Dever::input('mobile');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        $title = Dever::input('title');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        $birthday = Dever::input('birthday');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         $province = Dever::input('province');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         $country = Dever::input('country');
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         $desc = Dever::input('info');
 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -34,6 +36,12 @@ class App extends Base 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if ($desc) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 $update['info'] = $desc;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if ($title) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                $update['title'] = $title;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if ($birthday) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                $update['birthday'] = Dever::maketime($birthday);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if ($country && $province && $city) {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             	$update['set_area'] = $country . ',' . $province . ',' . $city;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             }
 
			 |