$remove_url = merge_url($remove_url, {'query' => $password_query, 'append_query' => 1, 'preserve_fragment' => 1});
}
+ my $post_class = $post_data{'mywords'} ? 'opomba mywords' : 'opomba';
+
my $_ID = html_entity_encode_dec($ID, 1);
my $_name = html_entity_encode_dec($post_data{'name'}, 1);
my $_quote_url = html_entity_encode_dec($quote_url, 1);
my $_edit_url = html_entity_encode_dec($edit_url, 1);
my $_remove_url = html_entity_encode_dec($remove_url, 1);
- print $fh ' <div id="'.$_ID.'"class="opomba">'."\n";
+ print $fh ' <div id="'.$_ID.'"class="'.$post_class.'">'."\n";
print $fh ' <div class="opomba_info">'."\n";
print $fh ' <a href="#'.$_ID.'" class="bi hu">'.$i.': '.$_name;
if ($post_time_text ne '') {
if ($data{'edittime'} ne '') {
$data{'edittime'} = int($data{'edittime'});
}
+ if ($data{'mywords'}) {
+ $data{'mywords'} = 1;
+ }
+ elsif (exists ($data{'mywords'})) {
+ delete $data{'mywords'};
+ }
return %data;
}
unless (open_encoded($fh, "+<:encoding(UTF-8)", $words_data_path)) {
unless (open_encoded($fh, "+>:encoding(UTF-8)", $words_data_path)) {
- exit output(0, '500 Internal Server Error', 'Failed opening data file.', 1);
+ exit output(0, HTTP_STATUS->{'internal_server_error'}, 'Failed opening data file.', 1);
}
}
unless (flock($fh, 2)) {
}
}
+if (($cgi{'password'} eq $settings{'password'}) && (!$remove) && ($ID eq '')) {
+ $post_data{'mywords'} = 1;
+}
+
if ($remove || ($ID ne '')) {
unless ($index ne '') {
close($fh);
unless (
($cgi{'password'} eq $post_data{'password'}) || (
($cgi{'password'} eq $settings{'password'}) &&
- $password_ok
+ ($password_ok || $post_data{'mywords'})
)
) {
close($fh);
$cgi{'password'} = $post_data{'password'};
}
}
+
unless ($cgi{'password2'} eq '') {
close($fh);
# no error code to confuse spambot :)
$post_data{'frame'} = $frame;
$post_data{'name'} = $cgi{'username'};
-$post_data{'password'} = $cgi{'password'};
+$post_data{'password'} = $post_data{'mywords'} ? '' : $cgi{'password'};
if ($post_data{'posttime'} eq '') {
$post_data{'posttime'} = $time;
}
$content = '';
}
- my $_password = $password_ok ? html_entity_encode_dec($settings{'password'}, 1) : '';
+ my $_password = ($password_ok || ($post_data{'mywords'} && $cgi{'password'} eq $settings{'password'})) ? html_entity_encode_dec($settings{'password'}, 1) : '';
+ my $_post_password = ($post_data{'mywords'} && $cgi{'password'} eq $settings{'password'}) ? $_password : '';
+ my $_bsta_password = $password_ok ? $_password : '';
my $_key = html_entity_encode_dec($post_data{'key'}, 1);
my $_ID = html_entity_encode_dec($ID, 1);
my $_title = html_entity_encode_dec($title, 1);
my $_website_name = html_entity_encode_dec(WEBSITE_NAME(), 1);
my $_post_url = html_entity_encode_dec(CGI_WORDS_PATH(), 1);
my $_return_url = html_entity_encode_dec($return_url, 1);
-
+
+ my $preview_class = $post_data{'mywords'} ? 'opomba mywords' : 'opomba';
+
print_html_start(\*STDOUT);
print_html_head_start(\*STDOUT);
print ' <td></td>'."\n";
print ' </tr><tr>'."\n";
print ' <td><b>'.(($ID ne '') ? 'Password' : 'Optional password').': </b></td>'."\n";
- print ' <td><input class="intx" type="password" name="password" value=""></td>'."\n";
+ print ' <td><input class="intx" type="password" name="password" value="'.$_post_password.'"></td>'."\n";
print ' <td>'.(($ID ne '') ? '' : '(if you want to edit later)').'</td>'."\n";
print ' </tr><tr>'."\n";
print ' <td><b>Leave this empty: </b></td>'."\n";
}
print ' <input type="hidden" name="key" value="'.$_key.'">'."\n";
if ($password_ok) {
- print ' <input type="hidden" name="p" value="'.$_password.'">'."\n";
+ print ' <input type="hidden" name="p" value="'.$_bsta_password.'">'."\n";
}
print ' </form>'."\n";
if ($content ne ''){
print ' <br>'."\n";
- print ' <div id="preview"class="opomba">'."\n";
+ print ' <div id="preview"class="'.$preview_class.'">'."\n";
print ' <div class="opomba_info">'."\n";
print ' Preview:'."\n";
print ' </div>'."\n";