diff --git a/.DS_Store b/.DS_Store index 18de60d..a4ea57b 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/about.php b/about.php index b6f43c1..76517b3 100644 --- a/about.php +++ b/about.php @@ -4,30 +4,45 @@ -
-Viewing image:
- ');
- $readable_article = str_replace( 'strong>', 'b>', $readable_article ); //change to
- $readable_article = str_replace( 'em>', 'i>', $readable_article ); //change to
-
+ $readable_article = str_replace('strong>', 'b>', $readable_article); //change to
+ $readable_article = str_replace('em>', 'i>', $readable_article); //change to
+
$readable_article = clean_str($readable_article);
- $readable_article = str_replace( 'href="http', 'href="/read.php?a=http', $readable_article ); //route links through proxy
-
+ $readable_article = str_replace('href="http', 'href="/read.php?a=http', $readable_article); //route links through proxy
+
} catch (ParseException $e) {
$error_text .= 'Sorry! ' . $e->getMessage() . '
';
}
//replace chars that old machines probably can't handle
-function clean_str($str) {
- $str = str_replace( "‘", "'", $str );
- $str = str_replace( "’", "'", $str );
- $str = str_replace( "“", '"', $str );
- $str = str_replace( "”", '"', $str );
- $str = str_replace( "–", '-', $str );
+function clean_str($str)
+{
+ $str = str_replace("‘", "'", $str);
+ $str = str_replace("’", "'", $str);
+ $str = str_replace("“", '"', $str);
+ $str = str_replace("”", '"', $str);
+ $str = str_replace("–", '-', $str);
return $str;
}
?>
-
-
-
-
[$img_num]
+ +
+ + + \ No newline at end of file