diff --git a/fp-includes/core/core.config.php b/fp-includes/core/core.config.php
index a077b9f..6ee60f4 100755
--- a/fp-includes/core/core.config.php
+++ b/fp-includes/core/core.config.php
@@ -1,52 +1,50 @@
$conf_arr);
- return system_save($conffile, $arr);
+ /* todo finire */
+}
+
+// a cosmetic wrapper around an include :D
+// plus, loads the defaults if CONFIG_FILE is not found
+function config_load($conffile = CONFIG_FILE) {
+ if (!file_exists($conffile) && ($conffile == CONFIG_FILE))
+ $conffile = CONFIG_DEFAULT;
+
+ include $conffile;
+
+ // todo CHANGE
+ // $fp_config['general'] = array_change_key_case($blog_confi);
+ return $fp_config;
+}
+
+// $conf_arr can have a variable number of args
+// they are the same of system_save(), as this is in fact
+// a wrapper to that ;)
+// so:
+// $conf_arr[ 'myvariable' ] = $myvariable;
+function config_save($conf_arr = null, $conffile = CONFIG_FILE) {
+ if ($conf_arr == null) {
+ global $fp_config;
+ $conf_arr = $fp_config;
}
+ $arr = array(
+ 'fp_config' => $conf_arr
+ );
+ return system_save($conffile, $arr);
+}
+
?>
\ No newline at end of file
diff --git a/fp-includes/core/core.utils.php b/fp-includes/core/core.utils.php
index 1b91f82..da68bb4 100644
--- a/fp-includes/core/core.utils.php
+++ b/fp-includes/core/core.utils.php
@@ -276,7 +276,7 @@ function utils_microtime() {
function utils_countdashes($string, &$rest) {
trim($string);
$i = 0;
- while ($string {$i} == '-') {
+ while ($string [$i] == '-') {
$i++;
}
if ($i)
diff --git a/fp-includes/core/core.wp-formatting.php b/fp-includes/core/core.wp-formatting.php
index 1aa512f..842af80 100644
--- a/fp-includes/core/core.wp-formatting.php
+++ b/fp-includes/core/core.wp-formatting.php
@@ -8,15 +8,15 @@ function wptexturize($text) {
$skip = 0; // loop stuff
for($i = 0; $i < $stop; $i++) {
$curl = $textarr [$i];
-
- if (isset($curl {0}) && '<' != $curl {0} && $skip == 0) { // If it's not a tag
+
+ if (isset($curl [0]) && '<' != $curl [0] && $skip == 0) { // If it's not a tag
$curl = str_replace('---', '—', $curl);
$curl = str_replace(' -- ', ' — ', $curl);
$curl = str_replace('--', '–', $curl);
$curl = str_replace('xn–', 'xn--', $curl);
$curl = str_replace('...', '…', $curl);
$curl = str_replace('``', '“', $curl);
-
+
// This is a hack, look at this more later. It works pretty well though.
$cockney = array(
"'tain't",
@@ -43,25 +43,25 @@ function wptexturize($text) {
"’cause"
);
$curl = str_replace($cockney, $cockneyreplace, $curl);
-
+
$curl = preg_replace("/'s/", '’s', $curl);
$curl = preg_replace("/'(\d\d(?:’|')?s)/", "’$1", $curl);
$curl = preg_replace('/(\s|\A|")\'/', '$1‘', $curl);
// $curl = preg_replace('/(\d+)"/', '$1″', $curl);
-
+
$curl = preg_replace('/(\s|\A)("|")(?!\s)/', '$1“$3', $curl);
-
+
$curl = preg_replace("/(\d+)'/", '$1′', $curl);
$curl = preg_replace("/(\S)'([^'\s])/", "$1’$2", $curl);
// $curl = preg_replace('/(\s|\A)"(?!\s)/', '$1“$2', $curl);
-
+
$curl = preg_replace('/(\s|\A)("|")(?!\s)/', '$1“$3', $curl);
-
+
$curl = preg_replace('/("|")(\s|\S|\Z)/', '”$2', $curl);
$curl = preg_replace("/'([\s.]|\Z)/", '’$1', $curl);
$curl = preg_replace("/ \(tm\)/i", ' ™', $curl);
$curl = str_replace("''", '”', $curl);
-
+
$curl = preg_replace('/(\d+)x(\d+)/', "$1×$2", $curl);
} elseif (strstr($curl, '') || strstr($curl, '/>')) {
if ($skip > 0)
@@ -70,7 +70,7 @@ function wptexturize($text) {
// strstr is fast
$skip++;
} else {
- if (isset($curl {0}) && $curl {0} == "<" && $skip > 0)
+ if (isset($curl [0]) && $curl [0] == "<" && $skip > 0)
$skip++;
}
$curl = preg_replace('/&([^#])(?![a-z12]{1,8};)/', '&$1', $curl);
@@ -84,7 +84,7 @@ function clean_pre($matches) {
$text = $matches [1] . $matches [2] . "";
else
$text = $matches;
-
+
/* NWM: a bit hackish? where are the slashes for double quotes added? */
$text = str_replace('\"', '"', $text);
$text = str_replace('
', '', $text);
@@ -150,7 +150,7 @@ function wpautop($pee, $br = 1) {
if (strpos($pee, '
]*>)(.*?)!is', 'clean_pre', $pee); $pee = preg_replace("|\n$|", '', $pee); - + return $pee; } @@ -208,7 +208,7 @@ function wp_specialchars($text, $quotes = 0) { $text = str_replace('"', '"', $text); $text = str_replace("'", ''', $text); } - + return $text; } @@ -216,32 +216,32 @@ function utf8_uri_encode($utf8_string) { $unicode = ''; $values = array(); $num_octets = 1; - + for($i = 0; $i < strlen($utf8_string); $i++) { - + $value = ord($utf8_string [$i]); - + if ($value < 128) { $unicode .= chr($value); } else { if (count($values) == 0) $num_octets = ($value < 224) ? 2 : 3; - + $values [] = $value; - + if (count($values) == $num_octets) { if ($num_octets == 3) { $unicode .= '%' . dechex($values [0]) . '%' . dechex($values [1]) . '%' . dechex($values [2]); } else { $unicode .= '%' . dechex($values [0]) . '%' . dechex($values [1]); } - + $values = array(); $num_octets = 1; } } } - + return $unicode; } @@ -436,14 +436,14 @@ function remove_accents($string) { // Euro Sign chr(226) . chr(130) . chr(172) => 'E' ); - + $string = strtr($string, $chars); } else { // Assume ISO-8859-1 if not UTF-8 $chars ['in'] = chr(128) . chr(131) . chr(138) . chr(142) . chr(154) . chr(158) . chr(159) . chr(162) . chr(165) . chr(181) . chr(192) . chr(193) . chr(194) . chr(195) . chr(196) . chr(197) . chr(199) . chr(200) . chr(201) . chr(202) . chr(203) . chr(204) . chr(205) . chr(206) . chr(207) . chr(209) . chr(210) . chr(211) . chr(212) . chr(213) . chr(214) . chr(216) . chr(217) . chr(218) . chr(219) . chr(220) . chr(221) . chr(224) . chr(225) . chr(226) . chr(227) . chr(228) . chr(229) . chr(231) . chr(232) . chr(233) . chr(234) . chr(235) . chr(236) . chr(237) . chr(238) . chr(239) . chr(241) . chr(242) . chr(243) . chr(244) . chr(245) . chr(246) . chr(248) . chr(249) . chr(250) . chr(251) . chr(252) . chr(253) . chr(255); - + $chars ['out'] = "EfSZszYcYuAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy"; - + $string = strtr($string, $chars ['in'], $chars ['out']); $double_chars ['in'] = array( chr(140), @@ -469,32 +469,32 @@ function remove_accents($string) { ); $string = str_replace($double_chars ['in'], $double_chars ['out'], $string); } - + return $string; } function sanitize_title($title, $fallback_title = '') { $title = strip_tags($title); - + $title = apply_filters('sanitize_title', $title); - + if (empty($title)) { $title = $fallback_title; } - + return $title; } function sanitize_title_with_dashes($title) { $title = strip_tags($title); - + if (seems_utf8($title)) { if (function_exists('mb_strtolower')) { $title = mb_strtolower($title, 'UTF-8'); } $title = utf8_uri_encode($title); } - + // Preserve escaped octets. $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '---$1---', $title); // Remove percent signs that are not part of an octet. @@ -503,26 +503,26 @@ function sanitize_title_with_dashes($title) { $title = preg_replace('|---([a-fA-F0-9][a-fA-F0-9])---|', '%$1', $title); // and finally: Kill octets $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '', $title); - + // remove accents $title = remove_accents($title); - + // title is in lower case always $title = strtolower($title); - + // kill entities $title = preg_replace('/&.+?;/', '', $title); - + // kill special chars $title = preg_replace('/[^%a-z0-9 _-]/', '', $title); - + // replace spaces by dash $title = preg_replace('/\s+/', '-', $title); // Kill multiple dashes $title = preg_replace('|-+|', '-', $title); // kill dashes at beginning and end of string $title = trim($title, '-'); - + return $title; } @@ -562,31 +562,31 @@ function convert_chars($content, $flag = 'obsolete') { '' => '', '' => 'Ÿ' ); - + // Remove metadata tags $content = preg_replace('/