Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10834
Modified Files:
serendipity_functions.inc.php
Log Message:
Support for french and spanish headlines.
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.320
retrieving revision 1.321
diff -u -d -r1.320 -r1.321
--- serendipity_functions.inc.php 6 Jul 2004 07:43:59 -0000 1.320
+++ serendipity_functions.inc.php 7 Jul 2004 19:38:55 -0000 1.321
@@ -955,15 +955,22 @@
'á',
'à',
'â',
+ 'å',
'ó',
'ò',
'ô',
+ 'õ',
'ú',
'ù',
'û',
+ 'ç',
+ 'Ç',
+
+ 'ñ',
+
'ý');
static $to = array(
@@ -991,15 +998,22 @@
'a',
'a',
'a',
+ 'a',
'o',
'o',
'o',
+ 'o',
'u',
'u',
'u',
+ 'c',
+ 'C',
+
+ 'n',
+
'y');
// For pretty urls we want to have a '+' as word separator. But GUIDs need to stay used to using '_' to not break bc.
@@ -1052,7 +1066,6 @@
}
$query = serendipity_db_query($querystring);
- echo '<!-- querystring: ' . $querystring . ' ' . print_r($query, true) . ' -->';
$totalEntries = $query[0][0];
$totalPages = ceil($totalEntries / (!empty($serendipity['fetchLimit']) ? $serendipity['fetchLimit'] : 15));
@@ -3260,3 +3273,4 @@
define("serendipity_FUNCTIONS_LOADED", true);
/* vim: set sts=4 ts=4 expandtab : */
?>
+
|