| 1 | *** post-old.php Sun May 23 09:34:17 2004 |
|---|
| 2 | --- post.php Wed Jun 16 13:14:31 2004 |
|---|
| 3 | *************** |
|---|
| 4 | *** 51,55 **** |
|---|
| 5 | $excerpt = balanceTags($_POST['excerpt']); |
|---|
| 6 | $excerpt = format_to_post($excerpt); |
|---|
| 7 | ! $post_title = addslashes($_POST['post_title']); |
|---|
| 8 | $post_categories = $_POST['post_category']; |
|---|
| 9 | if(get_settings('use_geo_positions')) { |
|---|
| 10 | --- 51,55 ---- |
|---|
| 11 | $excerpt = balanceTags($_POST['excerpt']); |
|---|
| 12 | $excerpt = format_to_post($excerpt); |
|---|
| 13 | ! $post_title = addslashes(strip_tags($_POST['post_title'])); |
|---|
| 14 | $post_categories = $_POST['post_category']; |
|---|
| 15 | if(get_settings('use_geo_positions')) { |
|---|
| 16 | *************** |
|---|
| 17 | *** 69,73 **** |
|---|
| 18 | $ping_status = $_POST['ping_status']; |
|---|
| 19 | if (empty($ping_status)) $ping_status = get_settings('default_ping_status'); |
|---|
| 20 | ! $post_password = addslashes(stripslashes($_POST['post_password'])); |
|---|
| 21 | |
|---|
| 22 | if (empty($post_name)) |
|---|
| 23 | --- 69,73 ---- |
|---|
| 24 | $ping_status = $_POST['ping_status']; |
|---|
| 25 | if (empty($ping_status)) $ping_status = get_settings('default_ping_status'); |
|---|
| 26 | ! $post_password = addslashes($_POST['post_password']); |
|---|
| 27 | |
|---|
| 28 | if (empty($post_name)) |
|---|