1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
//-----------------------------------------
// Post id given?
//-----------------------------------------
if( $uri_pid )
{
$post_id = ctype_digit($uri_pid) ? $uri_pid : false;
if( $post_id !== false )
{
$post = $this->get_post_info($post_id);
if( $post !== false )
{
if( $post['uid'] == $this->core->user->fetch['id'] || $this->core->user->fetch['group_level'] >= MODERATOR )
{
//-----------------------------------------
// Get UBB template plugins
//-----------------------------------------
$this->core->tpl->plugin('ubb_buttons');
$this->core->tpl->plugin('ubb_smileys');
debug( $post );
}
else
{
$error = true;
$error_message = 'Je kunt alleen berichten van jezelf wijzigen';
}
}
else
{
//
}
}
}
else
{
$error = true;
$error_message = 'Je hebt geen bericht id opgegeven om te bewerken';
}
?>
Zo hekel aan he, moet ik heel die functie gaan schrijven om post te editen
Waarom kunnen mensen niet in één keer iets goed typen