Subversion Repositories eFlore/Applications.cel

Rev

Rev 1110 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1110 Rev 1267
Line 362... Line 362...
362
				$result[] = $motcle ;
362
				$result[] = $motcle ;
363
			}
363
			}
Line 364... Line 364...
364
 
364
 
Line 365... Line 365...
365
			$res = json_encode($result) ;
365
			$res = json_encode($result) ;
366
 
366
 
367
			header("content-type: text/json") ;
367
			header("content-type: application/json") ;
368
			print $res ;
368
			print $res ;
369
			exit() ;
369
			exit() ;
Line 384... Line 384...
384
		$action = $pairs['action'] ;
384
		$action = $pairs['action'] ;
Line 385... Line 385...
385
 
385
 
386
		if($action == 'modification')
386
		if($action == 'modification')
387
		{
387
		{
388
			$nouveau_nom = $pairs['motcle'] ;
388
			$nouveau_nom = $pairs['motcle'] ;
Line 389... Line 389...
389
			$nouvel_id_general = md5(strtolower($nouveau_nom)) ;
389
			$nouvel_id_general = md5(mb_strtolower($nouveau_nom)) ;
Line 390... Line 390...
390
 
390