From 4b9c62980599228f070b401c7673dce8085b0c61 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Fri, 1 Jul 2011 17:40:48 -0500 Subject: backed out 648b42a75739, which was a NON-trivial whitespace commit. It broke the Typography class's string replacements, for instance --- user_guide/libraries/uri.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'user_guide/libraries/uri.html') diff --git a/user_guide/libraries/uri.html b/user_guide/libraries/uri.html index 884f4b955..e4e0f9d3f 100644 --- a/user_guide/libraries/uri.html +++ b/user_guide/libraries/uri.html @@ -106,7 +106,7 @@ re-routed URI in the event you are using CodeIgniter's $this->uri->uri_to_assoc(n) -

This function lets you turn URI segments into and associative array of key/value pairs. Consider this URI:

+

This function lets you turn URI segments into and associative array of key/value pairs. Consider this URI:

index.php/user/search/name/joe/location/UK/gender/male @@ -143,7 +143,7 @@ re-routed URI in the event you are using CodeIgniter's
$this->uri->assoc_to_uri() -

Takes an associative array as input and generates a URI string from it. The array keys will be included in the string. Example:

+

Takes an associative array as input and generates a URI string from it. The array keys will be included in the string. Example:

$array = array('product' => 'shoes', 'size' => 'large', 'color' => 'red');

$str = $this->uri->assoc_to_uri($array);

-// Produces: product/shoes/size/large/color/red +// Produces: product/shoes/size/large/color/red

$this->uri->uri_string()

-

Returns a string with the complete URI. For example, if this is your full URL:

+

Returns a string with the complete URI. For example, if this is your full URL:

http://example.com/index.php/news/local/345 @@ -215,7 +215,7 @@ re-routed URI in the event you are using CodeIgniter's