mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 13:21:19 +08:00 
			
		
		
		
	fix(lib): make opts local in omz_urlencode to fix scoping bug
Fixes error message when using zplug, due to $opts having been declared as an associative array: omz_urlencode:2: bad set of key/value pairs for associative array Fixes #9429
This commit is contained in:
		
							parent
							
								
									fa780867d9
								
							
						
					
					
						commit
						a3e0f4f2af
					
				@ -134,6 +134,7 @@ zmodload zsh/langinfo
 | 
			
		||||
#    -P causes spaces to be encoded as '%20' instead of '+'
 | 
			
		||||
function omz_urlencode() {
 | 
			
		||||
  emulate -L zsh
 | 
			
		||||
  local -a opts
 | 
			
		||||
  zparseopts -D -E -a opts r m P
 | 
			
		||||
 | 
			
		||||
  local in_str=$1
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user