Show
Ignore:
Timestamp:
07/17/08 19:26:13 (5 months ago)
Author:
sidtheduck
Message:

+ Slideshow fixes and javascript redirect to album view at end of slideshow (instead of repeat)
+ Miscellaneous small syntax edits

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plog-admin/includes/install-functions.php

    r560 r561  
    493493        $select = @mysql_select_db($database); 
    494494        if (!$select) { 
    495                 $errors[] = "Couldn't find the database $database. MySQL error: " . mysql_error(); 
     495                $errors[] = "Couldn't find the database `$database`. MySQL error: " . mysql_error(); 
    496496 
    497497        } 
     
    504504        $connection = @ftp_connect($host); 
    505505        if (!$connection) { 
    506                 $errors[] = "Couldn't connect to FTP host \"$host\".  Please check your FTP Host:"; 
     506                $errors[] = "Couldn't connect to FTP host `$host`.  Please check your FTP Host:"; 
    507507        } else { 
    508508                $login = @ftp_login($connection, $user, $pass); 
    509509                if (!$login) { 
    510                         $errors[] = "Couldn't login to FTP host \"$host\" with username \"$user\" and password \"$pass\". Please check your FTP Username: and FTP Password:"; 
     510                        $errors[] = "Couldn't login to FTP host `$host` with username `$user` and password `$pass`. Please check your FTP Username: and FTP Password:"; 
    511511                } else { 
    512512                        $checkdir = @ftp_chdir($connection, $path."plog-content/images/"); // check to see if the plog-content/images/ folder is accessible 
    513513                        if (!$checkdir) { 
    514                                 $errors[] = "Couldn't find the Plogger 'plog-content/images/' folder along the path \"$path\". Please check your FTP Path to Plogger Base Folder (from FTP login):"; 
     514                                $errors[] = "Couldn't find the Plogger 'plog-content/images/' folder along the path `$path`. Please check your FTP Path to Plogger Base Folder (from FTP login):"; 
    515515                        } 
    516516                }