This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
class MyController extends Zend_Controller_Action | |
{ | |
public function indexAction () { | |
$trailerQuery = "SELECT * FROM trailers"; | |
$rows = dbNumRows(dbQuery($trailerQuery)); | |
$a_parserSubVars['paging']['links'] = pagingLinks($trailerQuery,'start',$rows,'5',$_SERVER['REQUEST_URI']); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -rP ckfinder_php_2.3/config.php ckfinder_php_2.3_ftp/config.php | |
87a88,94 | |
> $config['Ftp'] = Array( | |
> 'host' => 'localhost', | |
> 'user' => '', | |
> 'pass' => '', | |
> 'path' => '', | |
> 'system_path' => $baseDir); | |
> | |
96c103 |