Skip to content

Commit

Permalink
Fixed an issue with earlier conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
jbud committed Jun 6, 2015
1 parent aa6795b commit da7b7b0
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,10 @@
$c_maxUploads = 10; // Max uploads per session
$c_debug_mode = false; // Turn on to get additional messages about server configuration.

=======
// General Settings:
$c_url = "http://i.budzique.com/"; // Example: http://i.jbud.org/ (Remember the slash at the end!)
$c_title = "TinyImg"; // Title of your image host... (Example: Bob's Images)
$c_tagline = "Worth a thousand words"; // Tagline of your image host... (Example: Worth a thousand words)
$c_maxFileSize = 10; // Max Filesize in MB
$c_maxUploads = 10; // Max uploads per session
>>>>>>> Stashed changes

// DO NOT EDIT Below:
$c_maxFileSize = $c_maxFileSize * 1024 * 1024; // Convert MB to Bytes
// Make formatted URL string for images:
$c_url_formatted = $c_url."i/";
$c_url_formatted = str_replace("/", "%2F", $c_url_formatted);
$c_url_formatted = str_replace(":", "%3A", $c_url_formatted);
// DO NOT EDIT Below:
$c_maxFileSize = $c_maxFileSize * 1024 * 1024; // Convert MB to Bytes
// Make formatted URL string for images:
$c_url_formatted = $c_url."i/";
$c_url_formatted = str_replace("/", "%2F", $c_url_formatted);
$c_url_formatted = str_replace(":", "%3A", $c_url_formatted);
?>

0 comments on commit da7b7b0

Please sign in to comment.