diff options
| author | Christian Schneider | 2007-10-16 14:23:00 +0000 | 
|---|---|---|
| committer | Christian Schneider | 2007-10-16 14:23:00 +0000 | 
| commit | 33b1621c411d9f313771bab8957e5dff109a4dd7 (patch) | |
| tree | bb83f75253bdab8188347b58ca23995cba50762e | |
| parent | 53e792fdfd6898fe114f2b8e6bf5d253844ee73e (diff) | |
| download | itools-33b1621c411d9f313771bab8957e5dff109a4dd7.tar.gz itools-33b1621c411d9f313771bab8957e5dff109a4dd7.tar.bz2 itools-33b1621c411d9f313771bab8957e5dff109a4dd7.zip  | |
Fix bogus indentation
| -rw-r--r-- | it_url.class | 2 | ||||
| -rw-r--r-- | it_user.class | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/it_url.class b/it_url.class index 3dfc8e7..5e29905 100644 --- a/it_url.class +++ b/it_url.class @@ -549,7 +549,7 @@ function redirect($url = null)   */  function encode($str)  { -    return strtr(urlencode($str), array("%2C"=>",", "%28"=>"(", "%29"=>")")); +	return strtr(urlencode($str), array("%2C"=>",", "%28"=>"(", "%29"=>")"));  }  /** diff --git a/it_user.class b/it_user.class index 58fccee..8792ab4 100644 --- a/it_user.class +++ b/it_user.class @@ -86,7 +86,7 @@ function it_user($p)   */  function _read_post_process()  { -        parent::_read_post_process(); +	parent::_read_post_process();  	# If read succeeded, get UID. This is necessary because it's only set if a cookie is present (i.e. in web-context)  	if (isset($this->{$this->p['uid_field']}))  |