mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
Thanks to BalzySte for the hint!
This commit is contained in:
parent
437f61c9b2
commit
44872d9f45
@ -440,7 +440,7 @@ class Pastes extends CI_Model
|
||||
$data['pastes'][$n]['title'] = $row['title'];
|
||||
$data['pastes'][$n]['name'] = $row['name'];
|
||||
$data['pastes'][$n]['created'] = $row['created'];
|
||||
$data['pastes'][$n]['lang'] = $row['lang'];
|
||||
$data['pastes'][$n]['lang'] = $this->languages->code_to_description($row['lang']);
|
||||
$data['pastes'][$n]['pid'] = $row['pid'];
|
||||
|
||||
if ($this->uri->segment(2) == 'rss')
|
||||
@ -483,7 +483,7 @@ class Pastes extends CI_Model
|
||||
$data['pastes'][$n]['title'] = $row['title'];
|
||||
$data['pastes'][$n]['name'] = $row['name'];
|
||||
$data['pastes'][$n]['created'] = $row['created'];
|
||||
$data['pastes'][$n]['lang'] = $row['lang'];
|
||||
$data['pastes'][$n]['lang'] = $this->languages->code_to_description($row['lang']);
|
||||
$data['pastes'][$n]['pid'] = $row['pid'];
|
||||
$data['pastes'][$n]['raw'] = $row['raw'];
|
||||
$data['pastes'][$n]['hits'] = $row['hits'];
|
||||
|
Loading…
x
Reference in New Issue
Block a user